mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 08:40:39 -04:00
"stripped down" refers to the fact that we build a single binary which includes ssh, sshd and scp functionality without having to bring in 3 copies of mostly the same code. Requests to add this category and this port have been posted on the ports list and directly to satoshi over the past few months. I assume no reply means no problem.
13 lines
504 B
Text
13 lines
504 B
Text
*** auth-passwd.c.orig Wed May 12 20:19:23 1999
|
|
--- auth-passwd.c Sun Jun 6 02:36:00 1999
|
|
***************
|
|
*** 911,916 ****
|
|
--- 911,918 ----
|
|
encrypted_password = crypt(password,
|
|
(correct_passwd[0] && correct_passwd[1]) ?
|
|
correct_passwd : "xx");
|
|
+ if (!password[0] && correct_passwd[0])
|
|
+ encrypted_password = ":";
|
|
#endif /* HAVE_SCO_ETC_SHADOW */
|
|
|
|
/* Authentication is accepted if the encrypted passwords are identical. */
|