Displaying 3 results from an estimated 3 matches for "do_fake_authloop1".
Did you mean:
do_fake_authloop
2000 May 09
0
OpenSSH compile error when enabling S/Key support
...h-rhosts.o auth-krb4.o
auth-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o
login.o servconf.o serverloop.o bsd-login.o md5crypt.o session.o -L.
-L/usr/local/openssl-0.9.5a/lib -L/usr/local/skey-1.1/lib -lssh -ldl
-lnsl -lz -lutil -lpam -lcrypto -lskey -lwrap
auth1.o: In function `do_fake_authloop1':
auth1.o(.text+0x126): undefined reference to `skey_fake_keyinfo'
auth1.o: In function `do_authloop':
auth1.o(.text+0x803): undefined reference to `skey_fake_keyinfo'
collect2: ld returned 1 exit status
make: *** [sshd] Error 1
Any Idea? Help would be very appreciated.
Axel Wagne...
2000 Jul 26
1
compiling openssh with skey? Fails on redhat linux
...54: warning: implicit declaration of function `skey_passcheck'
session.c: In function `do_authenticated':
session.c:159: warning: `type' might be used uninitialized in this
function
session.c:195: warning: `success' might be used uninitialized in this
function
auth1.o: In function `do_fake_authloop1':
auth1.c:101: undefined reference to `skey_fake_key
info'
auth1.o: In function `do_authloop':
auth1.c:331: undefined reference to `skey_keyinfo'
auth1.c:334: undefined reference to `skey_fake_key
info'
auth1.c:353: undefined reference to `skey_haskey'
auth1.c:353: undefined...
2000 Oct 07
0
OpenSSH changes for BSD/OS
...alid user. */
+ #ifdef HAVE_BSD_AUTH
+ /* we may have an auth type in the user name we need to strip */
+ {
+ char *p;
+ bsduser = xstrdup(user);
+ if ((p = strchr(user, ':')) != NULL)
+ *p = '\0';
+ }
+ #endif
pw = getpwnam(user);
if (!pw || !allowed_user(pw))
do_fake_authloop1(user);
***************
*** 482,487 ****
--- 500,508 ----
pwcopy.pw_gid = pw->pw_gid;
pwcopy.pw_dir = xstrdup(pw->pw_dir);
pwcopy.pw_shell = xstrdup(pw->pw_shell);
+ #if defined(BSD) && BSD >= 199506
+ pwcopy.pw_class = xstrdup(pw->pw_class);
+ #endif
pw = &pw...