summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/readconf.c
diff options
context:
space:
mode:
authorNiels Provos <provos@cvs.openbsd.org>1999-10-03 22:01:40 +0000
committerNiels Provos <provos@cvs.openbsd.org>1999-10-03 22:01:40 +0000
commit7295f655264dc0a34b9789d4c7064cc3dd804fa0 (patch)
tree9d998ef19469c502d3380b93d68336832f48fef0 /usr.bin/ssh/readconf.c
parentdce30fe4c3eed210d1830b1bb7d5434ad4f15607 (diff)
fix last commit.
Diffstat (limited to 'usr.bin/ssh/readconf.c')
-rw-r--r--usr.bin/ssh/readconf.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c
index 3b98588c87f..74ec62de326 100644
--- a/usr.bin/ssh/readconf.c
+++ b/usr.bin/ssh/readconf.c
@@ -14,7 +14,7 @@ Functions for reading the configuration files.
*/
#include "includes.h"
-RCSID("$Id: readconf.c,v 1.8 1999/10/03 21:50:03 provos Exp $");
+RCSID("$Id: readconf.c,v 1.9 1999/10/03 22:01:39 provos Exp $");
#include "ssh.h"
#include "cipher.h"
@@ -305,6 +305,10 @@ void process_config_line(Options *options, const char *host,
intptr = &options->batch_mode;
goto parse_flag;
+ case oCheckHostIP:
+ intptr = &options->check_host_ip;
+ goto parse_flag;
+
case oStrictHostKeyChecking:
intptr = &options->strict_host_key_checking;
cp = strtok(NULL, WHITESPACE);