Fixed small typo in hex printing.
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 14 Jan 2000 17:08:41 +0000 (17:08 +0000)
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 14 Jan 2000 17:08:41 +0000 (17:08 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1475 f5534014-38df-0310-8fa8-9805f1628bb7

packet-netbios.c

index 3b2b21bf100647faeb5200a2e3a5a71ebc176079..8fef8053ba141cbcec9ce7b71ce481f76288998a 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * derived from the packet-nbns.c
  *
- * $Id: packet-netbios.c,v 1.11 1999/11/30 07:45:41 guy Exp $
+ * $Id: packet-netbios.c,v 1.12 2000/01/14 17:08:41 gerald Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@zing.org>
@@ -192,7 +192,7 @@ process_netbios_name(const u_char *name_ptr, char *name_ret)
        int i;
        int name_type = *(name_ptr + NETBIOS_NAME_LEN - 1);
        u_char name_char;
-       static const char hex_digits[16] = "0123456780abcdef";
+       static const char hex_digits[16] = "0123456789abcdef";
 
        for (i = 0; i < NETBIOS_NAME_LEN - 1; i++) {
                name_char = *name_ptr++;