diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-07-31 18:25:29 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-07-31 18:25:29 +0000 |
commit | f28788d1d61c2757724f744b1dec8f64c7268fc2 (patch) | |
tree | 4b5dee17b1b0de4088bdb3012f4dfe2947a4fede /utils/login.c | |
parent | c4397aeaf295391458ef80816ca63ff34ef35461 (diff) | |
download | hurd-f28788d1d61c2757724f744b1dec8f64c7268fc2.tar.gz hurd-f28788d1d61c2757724f744b1dec8f64c7268fc2.tar.bz2 hurd-f28788d1d61c2757724f744b1dec8f64c7268fc2.zip |
*** empty log message ***
Diffstat (limited to 'utils/login.c')
-rw-r--r-- | utils/login.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/login.c b/utils/login.c index 726d7d16..7c8ae6ea 100644 --- a/utils/login.c +++ b/utils/login.c @@ -359,8 +359,6 @@ dog (time_t timeout, pid_t pid, char **argv) } } -asm (".weak crypt"); - void main(int argc, char *argv[]) { @@ -515,7 +513,8 @@ main(int argc, char *argv[]) void verify_passwd (const char *name, const char *password, uid_t id, int is_group) { - extern char *crypt (const char *string, const char salt[2]); + extern char *crypt (const char *string, const char salt[2]) + __attribute__ ((weak)); char *prompt, *unencrypted, *encrypted; if (!password || !*password |