The unified diff between revisions [6962b52a..] and [de230e99..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'common-algo.c'
#
#
# patch "common-algo.c"
# from [37d9d05401ab9d81872628b05045b6437296e78b]
# to [d832d9e93adfec0a5fe263f75eb76322db919850]
#
============================================================
--- common-algo.c 37d9d05401ab9d81872628b05045b6437296e78b
+++ common-algo.c d832d9e93adfec0a5fe263f75eb76322db919850
@@ -33,19 +33,19 @@
{&cipher_desc, keysize, blocksize} */
#ifdef DROPBEAR_AES128_CBC
-const struct dropbear_cipher dropbear_aes128 =
+static const struct dropbear_cipher dropbear_aes128 =
{&aes_desc, 16, 16};
#endif
#ifdef DROPBEAR_BLOWFISH_CBC
-const struct dropbear_cipher dropbear_blowfish =
+static const struct dropbear_cipher dropbear_blowfish =
{&blowfish_desc, 16, 8};
#endif
#ifdef DROPBEAR_TWOFISH128_CBC
-const struct dropbear_cipher dropbear_twofish128 =
+static const struct dropbear_cipher dropbear_twofish128 =
{&twofish_desc, 16, 16};
#endif
#ifdef DROPBEAR_3DES_CBC
-const struct dropbear_cipher dropbear_3des =
+static const struct dropbear_cipher dropbear_3des =
{&des3_desc, 24, 8};
#endif
@@ -57,11 +57,11 @@ const struct dropbear_cipher dropbear_no
{&hash_desc, keysize, hashsize} */
#ifdef DROPBEAR_SHA1_HMAC
-const struct dropbear_hash dropbear_sha1 =
+static const struct dropbear_hash dropbear_sha1 =
{&sha1_desc, 20, 20};
#endif
#ifdef DROPBEAR_MD5_HMAC
-const struct dropbear_hash dropbear_md5 =
+static const struct dropbear_hash dropbear_md5 =
{&md5_desc, 16, 16};
#endif