summaryrefslogtreecommitdiff
path: root/utils/login.c
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1996-07-30 19:23:31 +0000
committerThomas Bushnell <thomas@gnu.org>1996-07-30 19:23:31 +0000
commit02f22d5c684d29800ca6b69e3ebca094f3c17cb0 (patch)
tree6bafcfc70c7d6916bafa18ead2bc7632059ee99e /utils/login.c
parentd75bf60537850ac9edd04170d001ded4b41ac8bd (diff)
*** empty log message ***
Diffstat (limited to 'utils/login.c')
-rw-r--r--utils/login.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/utils/login.c b/utils/login.c
index 10762bc8..726d7d16 100644
--- a/utils/login.c
+++ b/utils/login.c
@@ -359,6 +359,8 @@ dog (time_t timeout, pid_t pid, char **argv)
}
}
+asm (".weak crypt");
+
void
main(int argc, char *argv[])
{
@@ -531,13 +533,14 @@ main(int argc, char *argv[])
prompt = "Password:";
unencrypted = getpass (prompt);
-#ifdef government_not_broken
- encrypted = crypt (unencrypted, password);
- /* Paranoia may destroya. */
- memset (unencrypted, 0, strlen (unencrypted));
-#else
- encrypted = unencrypted;
-#endif
+ if (crypt)
+ {
+ encrypted = crypt (unencrypted, password);
+ /* Paranoia may destroya. */
+ memset (unencrypted, 0, strlen (unencrypted));
+ }
+ else
+ encrypted = unencrypted;
if (name)
free (prompt);