diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-03-05 15:44:52 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-03-05 15:44:52 +0000 |
commit | b15c0e376be72599de29b2ac7205395f0f2aa47d (patch) | |
tree | 035de8355b7cd905b2a7c64693bee645d8d32246 /usr.bin/ssh | |
parent | 2fdb3bb0436533a2fd0d5e54bb276a404166caf2 (diff) |
sync error message; ok markus@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/servconf.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index 1e38f3b60f5..075eed400e8 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.70 2001/03/04 17:42:28 millert Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.71 2001/03/05 15:44:51 stevesk Exp $"); #ifdef KRB4 #include <krb.h> @@ -442,8 +442,9 @@ parse_filename: intptr = &options->permit_root_login; arg = strdelim(&cp); if (!arg || *arg == '\0') { - fprintf(stderr, "%s line %d: missing yes/without-password/no argument.\n", - filename, linenum); + fprintf(stderr, "%s line %d: missing yes/" + "without-password/forced-commands-only/no " + "argument.\n", filename, linenum); exit(1); } if (strcmp(arg, "without-password") == 0) |