summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-12-06 16:32:47 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-12-06 16:32:47 +0000
commit65366a8c766c8a769d42aa6e66b70f4512b4b7c3 (patch)
treeec32d1fd8da3491d6da5a88cc0bb54db14ad907d /servconf.c
parenteaffb9d6b6daafdfba60e76f766ed0dbf69c3d60 (diff)
- stevesk@cvs.openbsd.org 2001/11/17 19:14:34
[auth2.c auth.c readconf.c servconf.c ssh-agent.c ssh-keygen.c] enum/int type cleanup where it made sense to do so; ok markus@
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c
index e914d4cee..9274c7e6c 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.91 2001/11/12 18:17:07 markus Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.92 2001/11/17 19:14:34 stevesk Exp $");
14 14
15#if defined(KRB4) || defined(KRB5) 15#if defined(KRB4) || defined(KRB5)
16#include <krb.h> 16#include <krb.h>
@@ -334,7 +334,7 @@ static struct {
334 { "clientalivecountmax", sClientAliveCountMax }, 334 { "clientalivecountmax", sClientAliveCountMax },
335 { "authorizedkeysfile", sAuthorizedKeysFile }, 335 { "authorizedkeysfile", sAuthorizedKeysFile },
336 { "authorizedkeysfile2", sAuthorizedKeysFile2 }, 336 { "authorizedkeysfile2", sAuthorizedKeysFile2 },
337 { NULL, 0 } 337 { NULL, sBadOption }
338}; 338};
339 339
340/* 340/*