aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-08 20:23:55 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-08 20:23:55 +0000
commit73629cd195e498ba54688fd17e7f1e3cc49a8ac0 (patch)
tree4d90c20dd630d8ffa36aa1e78fe8ee60911efce9 /util.c
parenta5242a37dc0ecfe0a72aacef165073caf143f736 (diff)
More static-ization. In util.c, I commented out the ASCII-to-EBCDIC
functions, until that time that we need them. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5130 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/util.c b/util.c
index 45b89ab595..07a454f243 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.54 2001/11/09 07:44:48 guy Exp $
+ * $Id: util.c,v 1.55 2002/04/08 20:23:55 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -203,6 +203,7 @@ create_tempfile(char *namebuf, int namebuflen, const char *pfx)
/* ASCII/EBCDIC conversion tables from
* http://www.room42.com/store/computer_center/code_tables.shtml
*/
+#if 0
static guint8 ASCII_translate_EBCDIC [ 256 ] = {
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
@@ -256,6 +257,7 @@ ASCII_to_EBCDIC1(guint8 c)
{
return ASCII_translate_EBCDIC[c];
}
+#endif
static guint8 EBCDIC_translate_ASCII [ 256 ] = {
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,