diff options
author | guido <guido@FreeBSD.org> | 1997-10-28 21:20:21 +0000 |
---|---|---|
committer | guido <guido@FreeBSD.org> | 1997-10-28 21:20:21 +0000 |
commit | ee40c84c0b3204e606998712fa949e6e5907d5d4 (patch) | |
tree | 5f1e40a26c90805f48cc0ddef852151aec0606f0 /usr.bin/su | |
parent | f6deed1a05cb72542e40ecd5aae1fd8dbd52840d (diff) | |
download | FreeBSD-src-ee40c84c0b3204e606998712fa949e6e5907d5d4.zip FreeBSD-src-ee40c84c0b3204e606998712fa949e6e5907d5d4.tar.gz |
I wonder how I managed to get the krb.h include wrong. Anyway: correct it.
Diffstat (limited to 'usr.bin/su')
-rw-r--r-- | usr.bin/su/su.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/su/su.c b/usr.bin/su/su.c index 6b60d33..2787d1a 100644 --- a/usr.bin/su/su.c +++ b/usr.bin/su/su.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)su.c 8.3 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: su.c,v 1.14.2.5 1997/09/28 17:00:06 markm Exp $"; + "$Id: su.c,v 1.24 1997/10/27 22:05:12 guido Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -74,7 +74,7 @@ static const char rcsid[] = #ifdef KERBEROS #include <des.h> -#include <kerberosIV/krb.h> +#include <krb.h> #include <netdb.h> #ifdef LOGIN_CAP |