search for: fd_encrypt

Displaying 2 results from an estimated 2 matches for "fd_encrypt".

Did you mean: do_encrypt
2003 Sep 08
2
Variable declarations in xcrypt.c
...f (spw = getpwanam(pw->pw_name) != NULL) + pw_password = spw->pwa_passwd; + } # elif defined(HAVE_SECUREWARE) - struct pr_passwd *spw = getprpwnam(pw->pw_name); + if (spw != NULL) { + struct pr_passwd *spw = getprpwnam(pw->pw_name); - if (spw != NULL) pw_password = spw->ufld.fd_encrypt; + } # elif defined(__hpux) && !defined(HAVE_SECUREWARE) - struct pr_passwd *spw; - if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL) - pw_password = spw->ufld.fd_encrypt; + if (iscomsec()) { + struct pr_passwd *spw; + + if (spw = getpr...
2002 Mar 25
0
[Bug 184] New: 3.1p1 openssh fails to build a working sshd on Trusted HP-UX 10.26
...ntly + //you need to call getprpwnam to get the password for + //a user. + pr_pw = getprpwnam(pw->pw_name); + //This dies with a bus error, but isn't + //this a pointer that should be freed + //before we reassign? + //free(pw->pw_passwd); + pw->pw_passwd=pr_pw->ufld.fd_encrypt; + #endif if (pw && allowed_user(pw) && strcmp(service, "ssh-connection")==0) { authctxt->pw = pwcopy(pw); authctxt->valid = 1; Common subdirectories: openssh-3.1p1.orig/autom4te.cache and openssh-3.1p1/autom4te.cache diff -cr openssh-3.1p1.orig/configu...