*.c: Avoid <krb5/...> includes
authorJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 09:03:06 +0000 (09:03 +0000)
committerJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 09:03:06 +0000 (09:03 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5011 dc483132-0cff-0310-8789-dd5450dbe970

22 files changed:
src/lib/krb5/keytab/ChangeLog
src/lib/krb5/keytab/file/ChangeLog
src/lib/krb5/keytab/file/ktf_add.c
src/lib/krb5/keytab/file/ktf_close.c
src/lib/krb5/keytab/file/ktf_defops.c
src/lib/krb5/keytab/file/ktf_endget.c
src/lib/krb5/keytab/file/ktf_g_ent.c
src/lib/krb5/keytab/file/ktf_g_name.c
src/lib/krb5/keytab/file/ktf_next.c
src/lib/krb5/keytab/file/ktf_ops.c
src/lib/krb5/keytab/file/ktf_remove.c
src/lib/krb5/keytab/file/ktf_resolv.c
src/lib/krb5/keytab/file/ktf_ssget.c
src/lib/krb5/keytab/file/ktf_util.c
src/lib/krb5/keytab/file/ktf_wops.c
src/lib/krb5/keytab/file/ktf_wreslv.c
src/lib/krb5/keytab/ktadd.c
src/lib/krb5/keytab/ktbase.c
src/lib/krb5/keytab/ktdefault.c
src/lib/krb5/keytab/ktfr_entry.c
src/lib/krb5/keytab/ktremove.c
src/lib/krb5/keytab/read_servi.c

index 5d25cae4a8451dded2fd166460cd2992319edcad..aa393c88249cd5b11eabeda7aef60967221f30ac 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 28 00:59:22 1995  John Gilmore  (gnu at toad.com)
+
+       * *.c:  Avoid <krb5/...> includes.
+
 Wed Feb 22 01:38:54 1995 Keith Vetter (keithv@fusion.com)
 
        * Makefile.in: made to work on the PC
index 2da51ef57902a84bc1d69633417a76875d5aa3bb..b0090abd4a375d2d5cdce3b0c0eb691594e79baf 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 28 01:01:15 1995  John Gilmore  (gnu at toad.com)
+
+       * *.c:  Avoid <krb5/...> includes.
+
 Wed Feb 22 01:27:05 1995 Keith Vetter (keithv@fusion.com)
 
         * Makefile.in: made to work on the PC
index 2a2f15dd807efdf11b0da8a33f8ede7a4746e46e..a1cad2a3f6fb6bfd7e47d78827b27489f6b32507 100644 (file)
  * krb5_ktfile_add()
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index d051933f0558960f2a0ad79c0cf8a11a2baa9299..a59a796cc018a169000ad90e9728092f123b498a 100644 (file)
  * free memory hidden in the structures.
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index 5e1f1452c0f2fff4df858ada5e4f14cd01e40e8f..315860b073de438c8d606b2afa9f0fb5379dafc8 100644 (file)
@@ -24,9 +24,7 @@
  * krb5_kt_dfl_ops
  */
 
-
-#include <krb5/krb5.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_kt_ops krb5_kt_dfl_ops = {
index e733af7135a160a5dca5721c1f2cbdb0c13d119f..714e4b7b71ee12e02d87e1b0c5276ae6966ec038 100644 (file)
  * krb5_ktfile_end_get()
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index a56e45133629d844f38cbc2107cc9eaef967410d..591a887abb664631007a5f1a8d4987b1cc33686d 100644 (file)
  * an error.
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index 293bf13dcd57791eacc94d714f08e4bf357b150a..86f6159e91f3b5eb2921118dbc58bb265e4354f6 100644 (file)
  * Get the name of the file containing a file-based keytab.
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index 99123152614e7e3df82644ada056473e8d58a321..eb3ecc35a9d733f9c38e6bab749877787d358a7e 100644 (file)
  * krb5_ktfile_get_next()
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index dbed1893c84d9bdb72bc08a88fb493d7998de93c..9883de938f3d876bf87c6371a2359e6f01434548 100644 (file)
@@ -24,9 +24,7 @@
  * krb5_ktf_ops
  */
 
-
-#include <krb5/krb5.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 struct _krb5_kt_ops krb5_ktf_ops = {
index 8f2f64b96cc0f507e863321a81eb915618912770..b3ddd75b1fb8130d70123e7a1634d48b945896e5 100644 (file)
  * krb5_ktfile_add()
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index 4f52eb902458191691835c623bfb256323584dbd..bd304d943e13ff7c904ce8c4d5442a3e37f3b87a 100644 (file)
  * initialized with file keytab routines.
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index aa9304910e1c756e1b595f947f01afc4c0addcb9..b00a3f8c3990ce1d13e35e9b53afd17f2c1b3e3f 100644 (file)
  * krb5_ktfile_start_seq_get()
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index 301abbb9c4718642e269a4b342034a1e99cf1f5f..84466efc405423a8781bf18d0a56b6e94d874116 100644 (file)
  * sizeof(krb5_octet) bytes for the key version number
  * sizeof(krb5_int16) bytes for the keytype
  * sizeof(krb5_int32) bytes for the key length, followed by the key
- *
  */
 
-
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-#include <krb5/libos.h>
-#include <krb5/los-proto.h>
-#include <krb5/osconf.h>
+#include "k5-int.h"
 #include <stdio.h>
 
 #include "ktfile.h"
index bc2ff2999ee2a417396d369adbe297cb12205502..98edcbf872f19df55dfb31c03d01690c7f95cf03 100644 (file)
@@ -24,9 +24,7 @@
  * krb5_ktf_writable_ops
  */
 
-
-#include <krb5/krb5.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 struct _krb5_kt_ops krb5_ktf_writable_ops = {
index cb716d76017eb62f20cf71fdd34e0e2b8ee4ee45..7845a6b58dd4137791485c578f8b62f142f2276c 100644 (file)
  * initialized with file keytab routines.
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-
+#include "k5-int.h"
 #include "ktfile.h"
 
 krb5_error_code INTERFACE
index 42a6c4b44394998ec1ad73c3efd4a16eb86272d7..7656c7e95d6331edeef3c0a3922d9a0093176440 100644 (file)
@@ -24,8 +24,7 @@
  * krb5_kt_add_entry()
  */
 
-
-#include <krb5/krb5.h>
+#include "k5-int.h"
 
 krb5_error_code INTERFACE
 krb5_kt_add_entry (context, id, entry)
index c1264218993aa2627887ddfdedef24d5dbafedf8..97ea1a03eab1246f162fb9ff21d929ba6835ff82 100644 (file)
@@ -24,9 +24,7 @@
  * Registration functions for keytab.
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
+#include "k5-int.h"
 
 struct krb5_kt_typelist
  {
index dc53abbeaacc7f855bfe92e2889eff096226df45..195d0ca031475f566e264cc8adeb4bd9fa2283c8 100644 (file)
@@ -24,8 +24,7 @@
  * Get a default keytab.
  */
 
-
-#include <krb5/krb5.h>
+#include "k5-int.h"
 #include <stdio.h>
 
 krb5_error_code INTERFACE
index c7bb1241ff48e94ac460ba274dbb7fd4465b54d1..e573d4031480c3461665ae36153c4cf78e3cc295 100644 (file)
@@ -24,9 +24,7 @@
  * krb5_kt_free_entry()
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
+#include "k5-int.h"
 
 krb5_error_code INTERFACE
 krb5_kt_free_entry (context, entry)
index e8b433ca4f594106a822927cd2dc1fef850b8822..928d6aa85d35ca8f5eac50579357b54a4ac05ee2 100644 (file)
@@ -24,8 +24,7 @@
  * krb5_kt_remove_entry()
  */
 
-
-#include <krb5/krb5.h>
+#include "k5-int.h"
 
 krb5_error_code INTERFACE
 krb5_kt_remove_entry (context, id, entry)
index 77db43d868ca6185f4d70d055e6cd5f5ef7cdf78..90315dda166865249dfd87709faf4ec865ed8e72 100644 (file)
  * internally. 
  */
 
-
-#include <krb5/krb5.h>
-
-#include <krb5/ext-proto.h>
+#include "k5-int.h"
 
 #define KSUCCESS 0