summaryrefslogtreecommitdiffstats
path: root/auth-rsa.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-03-26 02:59:31 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-03-26 02:59:31 +0000
commitf6d367b91a78f91bc876a4c444e185e315244fdb (patch)
treebb3573d27da78c745f24909c323cc3da7878ae72 /auth-rsa.c
parent2e9d866608e807bb05f835bbe2b6bdb87cfa7299 (diff)
- markus@cvs.openbsd.org 2002/03/25 09:21:13
[auth-rsa.c] return 0 (not NULL); tomh@po.crl.go.jp
Diffstat (limited to 'auth-rsa.c')
-rw-r--r--auth-rsa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/auth-rsa.c b/auth-rsa.c
index 9c5d484b..c51400c2 100644
--- a/auth-rsa.c
+++ b/auth-rsa.c
@@ -14,7 +14,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth-rsa.c,v 1.52 2002/03/18 17:50:31 provos Exp $");
+RCSID("$OpenBSD: auth-rsa.c,v 1.53 2002/03/25 09:21:13 markus Exp $");
#include <openssl/rsa.h>
#include <openssl/md5.h>
@@ -165,7 +165,7 @@ auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
/* Restore the privileged uid. */
restore_uid();
xfree(file);
- return (NULL);
+ return (0);
}
/* Open the file containing the authorized keys. */
f = fopen(file, "r");
@@ -173,7 +173,7 @@ auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
/* Restore the privileged uid. */
restore_uid();
xfree(file);
- return (NULL);
+ return (0);
}
if (options.strict_modes &&
secure_filename(f, file, pw, line, sizeof(line)) != 0) {
@@ -181,7 +181,7 @@ auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
fclose(f);
log("Authentication refused: %s", line);
restore_uid();
- return (NULL);
+ return (0);
}
/* Flag indicating whether the key is allowed. */