summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:48:36 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:48:36 +0000
commiteb7a84c49e6248279ba130f8592bae356e7fb61e (patch)
tree4ebe9bedaded6069cf21cc70d6dde9fbd62ed5ac
parent4cc240dabbd81a308f06f2717b1942041fe0e205 (diff)
- dugsong@cvs.openbsd.org 2001/06/26 17:41:49
[servconf.c] #include <kafs.h>
-rw-r--r--ChangeLog5
-rw-r--r--servconf.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9c8aca4fe..cb26d0d9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -73,6 +73,9 @@
73 tildexpand.h uidswap.h uuencode.h xmalloc.h] 73 tildexpand.h uidswap.h uuencode.h xmalloc.h]
74 remove comments from .h, since they are cut&paste from the .c files 74 remove comments from .h, since they are cut&paste from the .c files
75 and out of sync 75 and out of sync
76 - dugsong@cvs.openbsd.org 2001/06/26 17:41:49
77 [servconf.c]
78 #include <kafs.h>
76 79
7720010629 8020010629
78 - (bal) Removed net_aton() since we don't use it any more 81 - (bal) Removed net_aton() since we don't use it any more
@@ -5900,4 +5903,4 @@
5900 - Wrote replacements for strlcpy and mkdtemp 5903 - Wrote replacements for strlcpy and mkdtemp
5901 - Released 1.0pre1 5904 - Released 1.0pre1
5902 5905
5903$Id: ChangeLog,v 1.1360 2001/07/04 04:46:56 mouring Exp $ 5906$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 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.85 2001/06/26 16:15:24 dugsong Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.86 2001/06/26 17:41:49 dugsong Exp $");
14 14
15#ifdef KRB4 15#ifdef KRB4
16#include <krb.h> 16#include <krb.h>
17#endif 17#endif
18#ifdef AFS
19#include <kafs.h>
20#endif
18 21
19#include "ssh.h" 22#include "ssh.h"
20#include "log.h" 23#include "log.h"