summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/include/ChangeLog5
-rw-r--r--src/include/krb5.hin5
2 files changed, 5 insertions, 5 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog
index d3121bde0..cccaaf38c 100644
--- a/src/include/ChangeLog
+++ b/src/include/ChangeLog
@@ -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
diff --git a/src/include/krb5.hin b/src/include/krb5.hin
index 6225ca97c..d1155c7b4 100644
--- a/src/include/krb5.hin
+++ b/src/include/krb5.hin
@@ -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))