include autoconf.h before krb5.h
authorKen Raeburn <raeburn@mit.edu>
Thu, 30 Mar 2006 08:52:36 +0000 (08:52 +0000)
committerKen Raeburn <raeburn@mit.edu>
Thu, 30 Mar 2006 08:52:36 +0000 (08:52 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17799 dc483132-0cff-0310-8789-dd5450dbe970

src/clients/kdestroy/ChangeLog
src/clients/kdestroy/kdestroy.c
src/clients/kinit/ChangeLog
src/clients/kinit/kinit.c

index 62e7537225853b01e7b5987fd9dc16e03e2f6dd0..35e66f8238d4486b83a52e2976f9ecf9e642daa9 100644 (file)
@@ -1,3 +1,7 @@
+2006-03-30  Ken Raeburn  <raeburn@mit.edu>
+
+       * kdestroy.c: Must include autoconf.h before krb5.h.
+
 2006-03-28  Ken Raeburn  <raeburn@mit.edu>
 
        * kdestroy.c: Include autoconf.h.
index a726076a4b059f95dc4a38672cd081a72e149e45..f7bcef7cddb15ba2f98ed96f0e51f74ab82b9f54 100644 (file)
  * Destroy the contents of your credential cache.
  */
 
+#include "autoconf.h"
 #include <krb5.h>
 #include <com_err.h>
 #include <string.h>
 #include <stdio.h>
-#include "autoconf.h"
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
index c06e6828a7a53ce766d9dd635eb12c3d24d4c8a1..d399e7e7e15e61da9fb5c5ed4fd13e15cc33f280 100644 (file)
@@ -1,3 +1,7 @@
+2006-03-30  Ken Raeburn  <raeburn@mit.edu>
+
+       * kinit.c: Must include autoconf.h before krb5.h.
+
 2006-03-28  Ken Raeburn  <raeburn@mit.edu>
 
        * Makefile.in (DEFS): Make empty.
index 82acddeadb74a99f9465d6f13c64d91cbfeb5bf0..05a17d8a6405866e8e0104048bf829d915bbc7f1 100644 (file)
@@ -27,8 +27,8 @@
  * Initialize a credentials cache.
  */
 
-#include <krb5.h>
 #include "autoconf.h"
+#include <krb5.h>
 #ifdef KRB5_KRB4_COMPAT
 #include <kerberosIV/krb.h>
 #define HAVE_KRB524