summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-11-10 02:41:30 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-11-10 02:41:30 +0000
commit305fb0018a1485a040eac264527b3fd4557a461a (patch)
tree731fd59b242eddc0560c712cb8c7652e0301f3d4 /auth1.c
parentdbcea870630e6e6cedc6937d33da4e2e4c6d5390 (diff)
20001110
- (bal) Fixed dropped answer from skey_keyinfo() in auth1.c - (bal) Changed from --with-skey to --with-skey=PATH in configure.in - (bal) Added in check to verify S/Key library is being detected in configure.in - (bal) next-posix.h - added another prototype wrapped in POSIX ifdef/endif. Patch by Mark Miller <markm@swoon.net> - (bal) Added 'util.h' header to loginrec.c only if HAVE_UTIL_H is defined to remove warnings under MacOS X. Patch by Mark Miller <markm@swoon.net> - (bal) Fixed LDFLAG mispelling in configure.in for --with-afs
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth1.c b/auth1.c
index 520da640c..ca0495d32 100644
--- a/auth1.c
+++ b/auth1.c
@@ -273,7 +273,7 @@ do_authloop(struct passwd * pw, char *luser)
273 if (options.skey_authentication == 1) { 273 if (options.skey_authentication == 1) {
274 char *skeyinfo = NULL; 274 char *skeyinfo = NULL;
275 if (pw != NULL) 275 if (pw != NULL)
276 skey_keyinfo(pw->pw_name); 276 skeyinfo = skey_keyinfo(pw->pw_name);
277 if (skeyinfo == NULL) { 277 if (skeyinfo == NULL) {
278 debug("generating fake skeyinfo for %.100s.", luser); 278 debug("generating fake skeyinfo for %.100s.", luser);
279 skeyinfo = skey_fake_keyinfo(luser); 279 skeyinfo = skey_fake_keyinfo(luser);