diff options
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c index f1601af2e..d7f1cf036 100644 --- a/readconf.c +++ b/readconf.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.c,v 1.225 2015/01/08 13:44:36 djm Exp $ */ | 1 | /* $OpenBSD: readconf.c,v 1.226 2015/01/13 07:39:19 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -1116,7 +1116,7 @@ parse_int: | |||
1116 | arg = strdelim(&s); | 1116 | arg = strdelim(&s); |
1117 | if (!arg || *arg == '\0') | 1117 | if (!arg || *arg == '\0') |
1118 | fatal("%.200s line %d: Missing argument.", filename, linenum); | 1118 | fatal("%.200s line %d: Missing argument.", filename, linenum); |
1119 | if (!key_names_valid2(arg)) | 1119 | if (!sshkey_names_valid2(arg, 1)) |
1120 | fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.", | 1120 | fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.", |
1121 | filename, linenum, arg ? arg : "<NONE>"); | 1121 | filename, linenum, arg ? arg : "<NONE>"); |
1122 | if (*activep && options->hostkeyalgorithms == NULL) | 1122 | if (*activep && options->hostkeyalgorithms == NULL) |