From: Ken Raeburn Date: Fri, 22 Jun 2001 03:27:50 +0000 (+0000) Subject: update X-Git-Tag: krb5-1.3-alpha1~1310 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=05c949ee0fc3bd5afa0a1567aa998b7ca515600a;p=krb5.git update git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13476 dc483132-0cff-0310-8789-dd5450dbe970 --- 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?