diff options
author | 2002-06-08 05:40:01 +0000 | |
---|---|---|
committer | 2002-06-08 05:40:01 +0000 | |
commit | 936a10cf8ea143628307a7d65f1bdf1359646de9 (patch) | |
tree | 2930767df18665a3e66bbe541247e99561f2cf6b | |
parent | Always keep the symbols, don't hand that memory to the VM system. (diff) | |
download | wireguard-openbsd-936a10cf8ea143628307a7d65f1bdf1359646de9.tar.xz wireguard-openbsd-936a10cf8ea143628307a7d65f1bdf1359646de9.zip |
just warn about Deprecated options for now
-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; |