standardize on "return foo;" rather than "return(foo);" or "return (foo);"

This commit is contained in:
Todd C. Miller
2011-01-24 15:15:18 -05:00
parent 3316ac8ebc
commit ae2f7638f5
68 changed files with 843 additions and 843 deletions

View File

@@ -64,7 +64,7 @@ afs_verify(struct passwd *pw, char *pass, sudo_auth *auth)
0, /* lifetime */
&afs_token, /* token */
0) == 0) /* new */
return(AUTH_SUCCESS);
return AUTH_SUCCESS;
/* Fall back on old method XXX - needed? */
setpag();
@@ -77,7 +77,7 @@ afs_verify(struct passwd *pw, char *pass, sudo_auth *auth)
NULL, /* expiration ptr (unused) */
0, /* spare */
NULL) == 0) /* reason */
return(AUTH_SUCCESS);
return AUTH_SUCCESS;
return(AUTH_FAILURE);
return AUTH_FAILURE;
}