summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1995-08-25 21:13:58 +0000
committerTheodore Tso <tytso@mit.edu>1995-08-25 21:13:58 +0000
commite9af2b8cca76dfa15c35a9e66bdec9f6cca5f7cf (patch)
treee26211f1b8782c1d21253a471db7f5c9fc46b258
parent91796ae2bd587a01a202e679a773080ed3383368 (diff)
downloadkrb5-e9af2b8cca76dfa15c35a9e66bdec9f6cca5f7cf.tar.gz
krb5-e9af2b8cca76dfa15c35a9e66bdec9f6cca5f7cf.tar.xz
krb5-e9af2b8cca76dfa15c35a9e66bdec9f6cca5f7cf.zip
Removed unused (and misleading) macros KEYTYPE_IS_LOCAL,
ETYPE_IS_LOCAL, CKSUMTYPE_IS_LOCAL git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6589 dc483132-0cff-0310-8789-dd5450dbe970
-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 d3121bde0f..cccaaf38c7 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 6225ca97cf..d1155c7b4f 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))