* kpasswd.c: USE_STRING_H -> HAVE_STRING_H for consistency
authorTom Yu <tlyu@mit.edu>
Tue, 20 Jun 1995 19:10:29 +0000 (19:10 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 20 Jun 1995 19:10:29 +0000 (19:10 +0000)
* configure.in: added missing check for string.h

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6107 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin.old/kpasswd/ChangeLog
src/kadmin.old/kpasswd/configure.in
src/kadmin.old/kpasswd/kpasswd.c

index 4278376902d55cea52cda537f05711171f409c61..c3a808026de9cc76bbefb720a8a1351c80e20fab 100644 (file)
@@ -1,3 +1,7 @@
+Tue Jun 20 12:53:59 1995  Tom Yu  (tlyu@dragons-lair)
+
+       * kpasswd.c: USE_STRING_H -> HAVE_STRING_H for consistency
+       * configure.in: added missing check for string.h
 
 Thu Jun 15 17:50:07 EDT 1995   Paul Park       (pjpark@mit.edu)
        * Makefile.in - Change explicit library names to -l<lib> form, and
index 6638e994b2040fb3137dabcb8ac0f967471a3caf..6d66402090c552e19dd918a924f38ea9536bf5cb 100644 (file)
@@ -1,7 +1,7 @@
 AC_INIT(kpasswd.c)
 CONFIG_RULES
 AC_PROG_INSTALL
-AC_HAVE_HEADERS(unistd.h stdlib.h)
+AC_HAVE_HEADERS(unistd.h string.h stdlib.h)
 CHECK_UTMP
 AC_FUNC_CHECK(getutent,AC_DEFINE(HAVE_GETUTENT))
 ET_RULES
index 0e550ac9c129a14539da9fadf6985179e34c44ec..c5cb5b9b8699e2342dbeb3b0f530b039205dbbf3 100644 (file)
@@ -34,7 +34,7 @@
 #include <sys/stat.h>
 
 #include "krb5.h"
-#ifdef USE_STRING_H
+#ifdef HAVE_STRING_H
 #include <string.h>
 #else
 #include <strings.h>