aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypto
diff options
context:
space:
mode:
authorSam Hartman <hartmans@mit.edu>2003-02-03 21:38:06 +0000
committerSam Hartman <hartmans@mit.edu>2003-02-03 21:38:06 +0000
commit4cfe244574a3be3fd5b12258b20da02ad6e98d58 (patch)
tree2aa5433439d7605a04999c7b309273a5f796b82d /src/lib/crypto
parente697a50c77314b0294b3a94329fb82e0c8692e56 (diff)
downloadkrb5-4cfe244574a3be3fd5b12258b20da02ad6e98d58.zip
krb5-4cfe244574a3be3fd5b12258b20da02ad6e98d58.tar.gz
krb5-4cfe244574a3be3fd5b12258b20da02ad6e98d58.tar.bz2
Make l40 static
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15142 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto')
-rw-r--r--src/lib/crypto/arcfour/ChangeLog5
-rw-r--r--src/lib/crypto/arcfour/arcfour.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/crypto/arcfour/ChangeLog b/src/lib/crypto/arcfour/ChangeLog
index 5bc717d..7442af5 100644
--- a/src/lib/crypto/arcfour/ChangeLog
+++ b/src/lib/crypto/arcfour/ChangeLog
@@ -1,3 +1,8 @@
+2003-02-03 Sam Hartman <hartmans@mit.edu>
+
+ * arcfour.c (krb5_arcfour_encrypt_length): l40, the 40-bit
+ constant should be static
+
2003-01-10 Ken Raeburn <raeburn@mit.edu>
* Makefile.in: Add AC_SUBST_FILE marker for libobj_frag.
diff --git a/src/lib/crypto/arcfour/arcfour.c b/src/lib/crypto/arcfour/arcfour.c
index 304c15e..a675970 100644
--- a/src/lib/crypto/arcfour/arcfour.c
+++ b/src/lib/crypto/arcfour/arcfour.c
@@ -8,7 +8,7 @@ of RSA Data Security)
*/
#include "k5-int.h"
#include "arcfour-int.h"
-const char *l40 = "fortybits";
+static const char *l40 = "fortybits";
void
krb5_arcfour_encrypt_length(enc, hash, inputlen, length)