summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-09 20:13:27 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-09 20:13:27 +0000
commit2e17b08e482024de21aaf7d4517e1594e7fb7a62 (patch)
tree7c1c5a0a55c417d57f9b77fca1364ac1528f9d81 /readconf.c
parentaf0c6d6a8c9333459454484697f493c993b843dc (diff)
downloadopenssh-git-2e17b08e482024de21aaf7d4517e1594e7fb7a62.tar.gz
- markus@cvs.openbsd.org 2002/06/08 12:46:14
[readconf.c] silently ignore deprecated options, since FallBackToRsh might be passed by remote scp commands.
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/readconf.c b/readconf.c
index 123406f5..79c27ae1 100644
--- a/readconf.c
+++ b/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"
@@ -670,9 +670,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);