change names to be prefixed with krb5_
authorJohn Kohl <jtkohl@mit.edu>
Wed, 17 Jan 1990 10:49:34 +0000 (10:49 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Wed, 17 Jan 1990 10:49:34 +0000 (10:49 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@96 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/hostaddr.h
src/include/krb5/wordsize.h

index 81e7472ac7527b4195bbf5a39e00b4b82805bed2..1b3d752cef1a2d2dd45a67addd45cbcc2426dd00 100644 (file)
@@ -20,7 +20,7 @@
 typedef struct _krb5_address {
     krb5_addrtype addrtype;
     int length;
-    octet contents[1];                 /* actually can be more, depending
+    krb5_octet contents[1];            /* actually can be more, depending
                                           on length */
 } krb5_address;
 
index d56074f296b6ca5c5932d8ff92f746fafb78faa4..305fdc9d2ed838da45c4e666c21b36c400fbef0b 100644 (file)
 
 #ifdef BITS16
 #define __OK
-typedef        int     int16;
-typedef        long    int32;
-typedef        unsigned char   octet;
+typedef        int     krb5_int16;
+typedef        long    krb5_int32;
+typedef        unsigned char   krb5_octet;
 #endif
 
 #ifdef BITS32
 #define __OK
-typedef        short   int16;
-typedef        int     int32;
-typedef        unsigned char   octet;
+typedef        short   krb5_int16;
+typedef        int     krb5_int32;
+typedef        unsigned char   krb5_octet;
 #endif
 
 #ifndef __OK