From 4cfe244574a3be3fd5b12258b20da02ad6e98d58 Mon Sep 17 00:00:00 2001 From: Sam Hartman Date: Mon, 3 Feb 2003 21:38:06 +0000 Subject: Make l40 static git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15142 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/crypto/arcfour/ChangeLog | 5 +++++ src/lib/crypto/arcfour/arcfour.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lib/crypto/arcfour/ChangeLog b/src/lib/crypto/arcfour/ChangeLog index 5bc717d2d..7442af5f8 100644 --- a/src/lib/crypto/arcfour/ChangeLog +++ b/src/lib/crypto/arcfour/ChangeLog @@ -1,3 +1,8 @@ +2003-02-03 Sam Hartman + + * arcfour.c (krb5_arcfour_encrypt_length): l40, the 40-bit + constant should be static + 2003-01-10 Ken Raeburn * 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 304c15e96..a6759700a 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) -- cgit