* README, *.[ch]: Avoid <...> includes for our include files
authorJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 10:33:30 +0000 (10:33 +0000)
committerJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 10:33:30 +0000 (10:33 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5032 dc483132-0cff-0310-8789-dd5450dbe970

13 files changed:
src/krb524/ChangeLog
src/krb524/README
src/krb524/conv_creds.c
src/krb524/conv_princ.c
src/krb524/conv_tkt.c
src/krb524/conv_tkt_skey.c
src/krb524/encode.c
src/krb524/getcred.c
src/krb524/k524init.c
src/krb524/krb524.h
src/krb524/krb524d.c
src/krb524/sendmsg.c
src/krb524/test.c

index ab44790c180708efad888b6705d086dd42a5348a..c6f09259c62a203d00e92cfefae606f06aa9806a 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 28 02:31:22 1995  John Gilmore  (gnu at toad.com)
+
+       * README, *.[ch]:  Avoid <...> includes for our include files.
+
 Thu Sep 15 10:47:27 1994  Theodore Y. Ts'o  (tytso@dcl)
 
        * Makefile, README, RELEASE_NOTES, conv_creds.c, conv_princ.c,
index 2f0dc27d052b7faf79843066b27336d764b46a17..2c7e4fa8fb9eba64178a6fd9c9e6aa836e0da62e 100644 (file)
@@ -86,7 +86,7 @@ ticket file is initialized.
 Using libkrb524.a
 ======================================================================
 
-To use libkrb524.a, #include <krb524.h>, link against libkrb524.a,
+To use libkrb524.a, #include "krb524.h", link against libkrb524.a,
 call krb524_init_ets() at the beginning of your program, and call one
 of the following two functions:
 
index 244ca4751e6ac5327ed543c2c869b3de7841c871..ecb5a1bf678985b114a6c96c911c2782e5a7c7c4 100644 (file)
@@ -24,7 +24,7 @@
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
-#include <krb5/krb5.h>
+#include "krb5.h"
 #include <krb.h>
 
 #include "krb524.h"
index 2b6b3315037cd462c0018a9267a4d57e404eb2a8..62a47b36ee23dfa64e05af12f1fa3010afe5ea78 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 #include <stdio.h>
-#include <krb5/krb5.h>
+#include "krb5.h"
 #include <krb.h>
 
 #include "krb524.h"
index 13d9353f560c586bb71a5d188803ac17bf0f2969..f84ee3558b6acc0ceba638eeb510c3235b0d18d8 100644 (file)
@@ -26,9 +26,8 @@
 #include <netinet/in.h>
 #include <netdb.h>
 
-#include <krb5/krb5.h>
+#include "krb5.h"
 #include <krb.h>
-
 #include "krb524.h"
 
 /*
index 35d67346b010717b68b10e90599624b29368f2fa..a91aa4cc1a2f3bb43144b3365e63a2abaa0ce595 100644 (file)
@@ -21,9 +21,8 @@
  */
 
 #include <stdio.h>
-#include <krb5/krb5.h>
+#include "krb5.h"
 #include <krb.h>
-
 #include "krb524.h"
 
 /*
index a90991a8511a301f833fa6d2e53e9438d46c5bcb..243f2e1b5661e05ec504e385aed8cdda9f305f0e 100644 (file)
@@ -21,9 +21,8 @@
  */
 
 #include <stdio.h>
-#include <krb5/krb5.h>
+#include "krb5.h"
 #include <krb.h>
-
 #include "krb524.h"
 
 /*
index 7f34dcd966d9931872f7563f82aaaa4878301dad..4cdef1af0bcc0136a83b54c4d5e7410d83e6a8cb 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 #include <stdio.h>
-#include <krb5/krb5.h>
+#include "krb5.h"
 #include <krb.h>
 
 main(int argc, char **argv)
index 5b18bb6d7d24a85d4c2dab5f0ec31e8f6a3d493f..44c50fac46405ffdea1734f88ab7329b24ea91f9 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 #include <stdio.h>
-#include <krb5/krb5.h>
+#include "krb5.h"
 #include <krb.h>
 
 extern int optind;
index 913a315a057d9331d3f54028a27dcba074f8fcad..d4c214089aaca5fd5e10453698d0d12b826f88ca 100644 (file)
@@ -26,7 +26,7 @@
 #define KRB524_SERVICE "krb524"
 #define KRB524_PORT 4444
 
-#include <krb524_err.h>
+#include "krb524_err.h"
 
 extern int krb524_debug;
 
index 117b4b2b0260d9f85437acd3bec69f6259e565c4..cdf368b079216f425070244eccd6b597b630e814 100644 (file)
 #include <netinet/in.h>
 #include <netdb.h>
 
-#include <krb5/krb5.h>
-#include <krb5/asn1.h>
-#include <krb5/kdb.h>
-#include <krb5/kdb_dbm.h>
-#ifdef PROVIDE_DES_CBC_CRC
-#include <krb5/mit-des.h>
-#endif
+#include "k5-int.h"
 #include <krb.h>
-
 #include "krb524.h"
 
 #define TIMEOUT 60
index e4846e30f87e0842b5b5bcb7a7045fc710f7c3ef..b8b380d57880e0be5477eae84e4b12970e9c0a77 100644 (file)
  * backoff retry algorithm.  This is based on krb5_sendto_kdc.
  */
 
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
+#include "krb5.h"
 
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/time.h>
 
-#include <krb5/los-proto.h>
-
 #ifdef _AIX
 #include <sys/select.h>
 #endif
index ab841cb906762e07eb5dce81795617429a5ff5e7..702037e48900127f6ecb7ead52e7228986878d55 100644 (file)
@@ -29,9 +29,7 @@
 
 #include <des.h>
 #include <krb.h>
-#include <krb5/krb5.h>
-#include <krb5/asn1.h>
-
+#include "k5-int.h"
 #include "krb524.h"
 
 #define KEYSIZE 8