summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2001-06-22 03:27:50 +0000
committerKen Raeburn <raeburn@mit.edu>2001-06-22 03:27:50 +0000
commit05c949ee0fc3bd5afa0a1567aa998b7ca515600a (patch)
treee2b19d504388293235aef2ed5f20b55c9fc8e1fc /src
parent6cf8637235d82b822caf9de5c4ed347854ad33ff (diff)
downloadkrb5-05c949ee0fc3bd5afa0a1567aa998b7ca515600a.tar.gz
krb5-05c949ee0fc3bd5afa0a1567aa998b7ca515600a.tar.xz
krb5-05c949ee0fc3bd5afa0a1567aa998b7ca515600a.zip
update
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13476 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/crypto/des/ISSUES14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/lib/crypto/des/ISSUES b/src/lib/crypto/des/ISSUES
index 110561ee9..412f94aa7 100644
--- a/src/lib/crypto/des/ISSUES
+++ b/src/lib/crypto/des/ISSUES
@@ -1,5 +1,13 @@
--*- text -*-
+Issues to be addressed for src/lib/crypto/des: -*- text -*-
-* "const" could be used in more places
+
+"const" could be used in more places
-* array types used too much
+
+Array types are used in calling interfaces. Under ANSI C, a value of
+type "arraytype *" cannot be assigned to a variable of type "const
+arraytype *", so we get compilation warnings.
+
+Possible fix: Rewrite internal interfaces to not use arrays this way.
+Provide external routines compatible with old API, but not using
+const?