summaryrefslogtreecommitdiff
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
parentaf0c6d6a8c9333459454484697f493c993b843dc (diff)
- 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.
-rw-r--r--ChangeLog6
-rw-r--r--readconf.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index b177fe72c..b20405506 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,6 +18,10 @@
18 - markus@cvs.openbsd.org 2002/06/08 12:36:53 18 - markus@cvs.openbsd.org 2002/06/08 12:36:53
19 [scp.c] 19 [scp.c]
20 remove FallBackToRsh 20 remove FallBackToRsh
21 - markus@cvs.openbsd.org 2002/06/08 12:46:14
22 [readconf.c]
23 silently ignore deprecated options, since FallBackToRsh might be passed
24 by remote scp commands.
21 25
2220020607 2620020607
23 - (bal) Removed --{enable/disable}-suid-ssh 27 - (bal) Removed --{enable/disable}-suid-ssh
@@ -849,4 +853,4 @@
849 - (stevesk) entropy.c: typo in debug message 853 - (stevesk) entropy.c: typo in debug message
850 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 854 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
851 855
852$Id: ChangeLog,v 1.2194 2002/06/09 20:06:29 mouring Exp $ 856$Id: ChangeLog,v 1.2195 2002/06/09 20:13:27 mouring Exp $
diff --git a/readconf.c b/readconf.c
index 123406f53..79c27ae15 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: readconf.c,v 1.97 2002/06/08 05:40:01 markus Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.98 2002/06/08 12:46:14 markus Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -670,9 +670,9 @@ parse_int:
670 break; 670 break;
671 671
672 case oDeprecated: 672 case oDeprecated:
673 error("%s line %d: Deprecated option \"%s\"", 673 debug("%s line %d: Deprecated option \"%s\"",
674 filename, linenum, keyword); 674 filename, linenum, keyword);
675 break; 675 return 0;
676 676
677 default: 677 default:
678 fatal("process_config_line: Unimplemented opcode %d", opcode); 678 fatal("process_config_line: Unimplemented opcode %d", opcode);