- itojun@cvs.openbsd.org 2001/07/11 00:24:53
[servconf.c] make it compilable in all 4 combination of KRB4/KRB5 settings. dugsong ok XXX isn't it sensitive to the order of -I/usr/include/kerberosIV and -I/usr/include/kerberosV?
This commit is contained in:
parent
07ab49ef71
commit
c4b7feabe0
|
@ -34,6 +34,12 @@
|
||||||
- markus@cvs.openbsd.org 2001/07/10 21:49:12
|
- markus@cvs.openbsd.org 2001/07/10 21:49:12
|
||||||
[readpass.c]
|
[readpass.c]
|
||||||
don't panic if fork or pipe fail (just return an empty passwd).
|
don't panic if fork or pipe fail (just return an empty passwd).
|
||||||
|
- itojun@cvs.openbsd.org 2001/07/11 00:24:53
|
||||||
|
[servconf.c]
|
||||||
|
make it compilable in all 4 combination of KRB4/KRB5 settings.
|
||||||
|
dugsong ok
|
||||||
|
XXX isn't it sensitive to the order of -I/usr/include/kerberosIV and
|
||||||
|
-I/usr/include/kerberosV?
|
||||||
|
|
||||||
20010711
|
20010711
|
||||||
- (djm) dirname(3) may modify its argument on glibc and other systems.
|
- (djm) dirname(3) may modify its argument on glibc and other systems.
|
||||||
|
@ -6009,4 +6015,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1395 2001/07/14 02:19:56 djm Exp $
|
$Id: ChangeLog,v 1.1396 2001/07/14 02:20:32 djm Exp $
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: servconf.c,v 1.87 2001/07/08 15:23:38 stevesk Exp $");
|
RCSID("$OpenBSD: servconf.c,v 1.88 2001/07/11 00:24:53 itojun Exp $");
|
||||||
|
|
||||||
#ifdef KRB4
|
#if defined(KRB4) || defined(KRB5)
|
||||||
#include <krb.h>
|
#include <krb.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef AFS
|
#ifdef AFS
|
||||||
|
|
Loading…
Reference in New Issue