From: Ben Laurie Date: Fri, 6 Jul 2001 21:35:00 +0000 (+0000) Subject: Constification. X-Git-Tag: OpenSSL_0_9_6c~182^2~47 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=601cb9be206674990838f3524af24f0bea396b45;p=oweals%2Fopenssl.git Constification. --- diff --git a/crypto/rc5/rc5_ecb.c b/crypto/rc5/rc5_ecb.c index 1841892b2a..e72b535507 100644 --- a/crypto/rc5/rc5_ecb.c +++ b/crypto/rc5/rc5_ecb.c @@ -60,7 +60,7 @@ #include "rc5_locl.h" #include -char *RC5_version="RC5" OPENSSL_VERSION_PTEXT; +const char RC5_version[]="RC5" OPENSSL_VERSION_PTEXT; void RC5_32_ecb_encrypt(const unsigned char *in, unsigned char *out, RC5_32_KEY *ks, int encrypt)