summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/servconf.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-05-08 17:12:17 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-05-08 17:12:17 +0000
commit3ee63f345da2ca5f1098330250661fe7974ca2eb (patch)
tree17404015e2300b053fb3cc8196cbaff698082468 /usr.bin/ssh/servconf.c
parent2b7919bc1252adaa3394be53285858329945b1ce (diff)
complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only)
Diffstat (limited to 'usr.bin/ssh/servconf.c')
-rw-r--r--usr.bin/ssh/servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c
index ae044c28d21..57f7050dbb4 100644
--- a/usr.bin/ssh/servconf.c
+++ b/usr.bin/ssh/servconf.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$Id: servconf.c,v 1.39 2000/05/06 17:45:36 markus Exp $");
+RCSID("$Id: servconf.c,v 1.40 2000/05/08 17:12:15 markus Exp $");
#include "ssh.h"
#include "servconf.h"
@@ -589,7 +589,7 @@ parse_flag:
case sCiphers:
cp = strtok(NULL, WHITESPACE);
if (!ciphers_valid(cp))
- fatal("%s line %d: Bad cipher spec '%s'.",
+ fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
filename, linenum, cp ? cp : "<NONE>");
if (options->ciphers == NULL)
options->ciphers = xstrdup(cp);