Index: libshouldbeinlibc/idvec-verify.c =================================================================== RCS file: /cvsroot/hurd/hurd/libshouldbeinlibc/idvec-verify.c,v retrieving revision 1.11 diff -u -p -r1.11 idvec-verify.c --- libshouldbeinlibc/idvec-verify.c 6 Aug 2003 22:10:28 -0000 1.11 +++ libshouldbeinlibc/idvec-verify.c 8 Aug 2003 18:45:16 -0000 @@ -1,6 +1,6 @@ /* Verify user passwords - Copyright (C) 1996,97,98,99,2002 Free Software Foundation, Inc. + Copyright (C) 1996,97,98,99,2002, 2003 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.org> This program is free software; you can redistribute it and/or @@ -74,8 +74,8 @@ verify_passwd (const char *password, /* Encrypt the password entered by the user (SYS_ENCRYPTED is the salt). */ encrypted = crypt (password, sys_encrypted); else - /* No crypt on this system! Use plain-text passwords. */ - encrypted = password; + /* We aren't linked with libcrypt. */ + return ENOTSUP; if (! encrypted) /* Crypt failed. */