From 6903b42cd810d34505661b8646478f880d5a1fff Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Thu, 17 Oct 1996 16:47:22 +0000 Subject: [PATCH] Change "nope" to ":" Previous variant not work well, if you have a user with name nope --- lib/libskey/skey_getpass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libskey/skey_getpass.c b/lib/libskey/skey_getpass.c index cc2fcc327d74..51b564baa879 100644 --- a/lib/libskey/skey_getpass.c +++ b/lib/libskey/skey_getpass.c @@ -12,7 +12,7 @@ int pwok; static char buf[128]; struct skey skey; char *pass = ""; - char *username = pwd ? pwd->pw_name : "nope"; + char *username = pwd ? pwd->pw_name : ":"; int sflag; /* Attempt an s/key challenge. */