diff src/cipher.c @ 11677:8004885fabbe

[gaim-migrate @ 13963] Remove some things from the public namespace by making them static committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 17 Oct 2005 05:50:30 +0000
parents 036bd21c5560
children cfc808463763
line wrap: on
line diff
--- a/src/cipher.c	Mon Oct 17 05:32:33 2005 +0000
+++ b/src/cipher.c	Mon Oct 17 05:50:30 2005 +0000
@@ -705,7 +705,7 @@
  *  * These two tables are part of the 'permuted choice 1' function.
  *   * In this implementation several speed improvements are done.
  *    */
-guint32 leftkey_swap[16] =
+static guint32 leftkey_swap[16] =
 {
 	0x00000000, 0x00000001, 0x00000100, 0x00000101,
 	0x00010000, 0x00010001, 0x00010100, 0x00010101,
@@ -713,7 +713,7 @@
 	0x01010000, 0x01010001, 0x01010100, 0x01010101
 };
 
-guint32 rightkey_swap[16] =
+static guint32 rightkey_swap[16] =
 {
 	0x00000000, 0x01000000, 0x00010000, 0x01010000,
 	0x00000100, 0x01000100, 0x00010100, 0x01010100,