diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-12-06 16:32:47 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-12-06 16:32:47 +0000 |
commit | 65366a8c766c8a769d42aa6e66b70f4512b4b7c3 (patch) | |
tree | ec32d1fd8da3491d6da5a88cc0bb54db14ad907d /readconf.c | |
parent | eaffb9d6b6daafdfba60e76f766ed0dbf69c3d60 (diff) | |
download | openssh-git-65366a8c766c8a769d42aa6e66b70f4512b4b7c3.tar.gz |
- 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 'readconf.c')
-rw-r--r-- | readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readconf.c,v 1.91 2001/10/01 21:51:16 markus Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.92 2001/11/17 19:14:34 stevesk Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -187,7 +187,7 @@ static struct { { "smartcarddevice", oSmartcardDevice }, { "clearallforwardings", oClearAllForwardings }, { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost }, - { NULL, 0 } + { NULL, oBadOption } }; /* |