diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-08 12:46:15 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-08 12:46:15 +0000 |
commit | 46d9b4830762b6dab80f47b9f4560feb1dbd97c2 (patch) | |
tree | 8b169f1421011fedea3cffa51a1da1ea4c78b9eb | |
parent | 0db239632147b5575c0010a6851c22e4285725f4 (diff) |
silently ignore deprecated options, since FallBackToRsh might be passed
by remote scp commands.
-rw-r--r-- | usr.bin/ssh/readconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index 04934d100d0..7b663310891 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.97 2002/06/08 05:40:01 markus Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.98 2002/06/08 12:46:14 markus Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -668,9 +668,9 @@ parse_int: break; case oDeprecated: - error("%s line %d: Deprecated option \"%s\"", + debug("%s line %d: Deprecated option \"%s\"", filename, linenum, keyword); - break; + return 0; default: fatal("process_config_line: Unimplemented opcode %d", opcode); |