summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1996-10-17 17:46:00 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1996-10-17 17:46:00 +0000
commit28fbb50335bbcd0170230bcab2a71aa59e1c48c7 (patch)
treedbd5a5c95e5e441718d8472a6851c7894758bb83
parentb40a35f25090afb0dfa16cbe31b8fc056aa07d71 (diff)
Notes
-rw-r--r--libexec/ftpd/skey-stuff.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libexec/ftpd/skey-stuff.c b/libexec/ftpd/skey-stuff.c
index 06a227d7db3a..2fe3f56a7a60 100644
--- a/libexec/ftpd/skey-stuff.c
+++ b/libexec/ftpd/skey-stuff.c
@@ -1,6 +1,6 @@
/* Author: Wietse Venema, Eindhoven University of Technology.
*
- * $Id: skey-stuff.c,v 1.3 1996/09/22 21:53:34 wosch Exp $
+ * $Id: skey-stuff.c,v 1.4 1996/10/17 17:06:04 ache Exp $
*/
#include <stdio.h>
@@ -23,7 +23,8 @@ int *sflag;
/* Display s/key challenge where appropriate. */
*sflag = skeychallenge(&skey, username, buf);
- sprintf(buf, "%s required for %s.",
- pwok ? "Password" : "S/Key password", name);
+ if (*sflag)
+ sprintf(buf, "%s required for %s.",
+ pwok ? "Password" : "S/Key password", name);
return (buf);
}