artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e978f30
)
Add missing break for rdomain. Prevents spurious "Deprecated option"
author
dtucker
<dtucker@openbsd.org>
Tue, 5 Dec 2017 23:56:07 +0000
(23:56 +0000)
committer
dtucker
<dtucker@openbsd.org>
Tue, 5 Dec 2017 23:56:07 +0000
(23:56 +0000)
warnings. ok djm@
usr.bin/ssh/servconf.c
patch
|
blob
|
history
diff --git
a/usr.bin/ssh/servconf.c
b/usr.bin/ssh/servconf.c
index
d7fd2d9
..
e56dd51
100644
(file)
--- a/
usr.bin/ssh/servconf.c
+++ b/
usr.bin/ssh/servconf.c
@@
-1,5
+1,5
@@
-/* $OpenBSD: servconf.c,v 1.32
0 2017/11/03 05:18:44 djm
Exp $ */
+/* $OpenBSD: servconf.c,v 1.32
1 2017/12/05 23:56:07 dtucker
Exp $ */
/*
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
@@
-1966,6
+1966,7
@@
process_server_config_line(ServerOptions *options, char *line,
filename, linenum);
if (*activep && *charptr == NULL)
*charptr = xstrdup(arg);
+ break;
case sDeprecated:
case sIgnore: