summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c
index 542c76f33..e9aa1818a 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: readconf.c,v 1.78 2001/05/18 14:13:28 markus Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.79 2001/05/24 18:57:53 stevesk Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -641,7 +641,7 @@ parse_int:
641 else if (strlen(arg) == 1) 641 else if (strlen(arg) == 1)
642 value = (u_char) arg[0]; 642 value = (u_char) arg[0];
643 else if (strcmp(arg, "none") == 0) 643 else if (strcmp(arg, "none") == 0)
644 value = -2; 644 value = SSH_ESCAPECHAR_NONE;
645 else { 645 else {
646 fatal("%.200s line %d: Bad escape character.", 646 fatal("%.200s line %d: Bad escape character.",
647 filename, linenum); 647 filename, linenum);