Removed unused (and misleading) macros KEYTYPE_IS_LOCAL,
authorTheodore Tso <tytso@mit.edu>
Fri, 25 Aug 1995 21:13:58 +0000 (21:13 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 25 Aug 1995 21:13:58 +0000 (21:13 +0000)
ETYPE_IS_LOCAL, CKSUMTYPE_IS_LOCAL

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

src/include/ChangeLog
src/include/krb5.hin

index d3121bde0f9f8dee328832d4e09d0a3e59ae0feb..cccaaf38c7904614d25872ba2d9b7fe9316978b3 100644 (file)
@@ -1,3 +1,8 @@
+Fri Aug 25 17:12:37 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * krb5.hin: Removed unused (and misleading) macros
+               KEYTYPE_IS_LOCAL, ETYPE_IS_LOCAL, CKSUMTYPE_IS_LOCAL
+
 Thu Aug 24 19:23:10 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * .Sanitize: Update file list
index 6225ca97cfe1fdc9ffc3b23fde6c3732dd4bdaa7..d1155c7b4fdef0daa3136eda4083d72893da335f 100644 (file)
@@ -401,11 +401,6 @@ typedef struct _krb5_checksum_entry {
 #define        CKSUMTYPE_RSA_MD5       0x0007
 #define        CKSUMTYPE_RSA_MD5_DES   0x0008
 
-/* macros to determine if a type is a local type */
-#define KEYTYPE_IS_LOCAL(keytype) (keytype & 0x8000)
-#define ETYPE_IS_LOCAL(etype) (etype & 0x8000)
-#define CKSUMTYPE_IS_LOCAL(cksumtype) (cksumtype & 0x8000)
-
 #ifndef krb5_roundup
 /* round x up to nearest multiple of y */
 #define krb5_roundup(x, y) ((((x) + (y) - 1)/(y))*(y))