diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 06:48:36 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 06:48:36 +0200 |
commit | eb7a84c49e6248279ba130f8592bae356e7fb61e (patch) | |
tree | 4ebe9bedaded6069cf21cc70d6dde9fbd62ed5ac | |
parent | - markus@cvs.openbsd.org 2001/06/26 17:27:25 (diff) | |
download | openssh-eb7a84c49e6248279ba130f8592bae356e7fb61e.tar.xz openssh-eb7a84c49e6248279ba130f8592bae356e7fb61e.zip |
- dugsong@cvs.openbsd.org 2001/06/26 17:41:49
[servconf.c]
#include <kafs.h>
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | servconf.c | 5 |
2 files changed, 8 insertions, 2 deletions
@@ -73,6 +73,9 @@ tildexpand.h uidswap.h uuencode.h xmalloc.h] remove comments from .h, since they are cut&paste from the .c files and out of sync + - dugsong@cvs.openbsd.org 2001/06/26 17:41:49 + [servconf.c] + #include <kafs.h> 20010629 - (bal) Removed net_aton() since we don't use it any more @@ -5900,4 +5903,4 @@ - Wrote replacements for strlcpy and mkdtemp - Released 1.0pre1 -$Id: ChangeLog,v 1.1360 2001/07/04 04:46:56 mouring Exp $ +$Id: ChangeLog,v 1.1361 2001/07/04 04:48:36 mouring Exp $ diff --git a/servconf.c b/servconf.c index 7dbf31834..9d5b54f3e 100644 --- a/servconf.c +++ b/servconf.c @@ -10,11 +10,14 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.85 2001/06/26 16:15:24 dugsong Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.86 2001/06/26 17:41:49 dugsong Exp $"); #ifdef KRB4 #include <krb.h> #endif +#ifdef AFS +#include <kafs.h> +#endif #include "ssh.h" #include "log.h" |