diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-08 05:40:02 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-08 05:40:02 +0000 |
commit | 2ca7bb00fdb10d895914457038a7a62d89506f1d (patch) | |
tree | 990d4981d7de74e37e63b6d7a4ca41e890830466 /usr.bin/ssh/readconf.c | |
parent | 5ed5d298bb2743051cd642935b45db52a4c1dd6c (diff) |
just warn about Deprecated options for now
Diffstat (limited to 'usr.bin/ssh/readconf.c')
-rw-r--r-- | usr.bin/ssh/readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index 6ac971e39f0..04934d100d0 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readconf.c,v 1.96 2002/06/08 05:17:01 markus Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.97 2002/06/08 05:40:01 markus Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -668,7 +668,7 @@ parse_int: break; case oDeprecated: - fatal("%s line %d: Deprecated option \"%s\"", + error("%s line %d: Deprecated option \"%s\"", filename, linenum, keyword); break; |