Make the hex to string conversion code in find_dlg.c handle ':' characters

such as you might find when doing "prepare" on a FT_BYTES field.

So one need not delete the ':' characters manually

svn path=/trunk/; revision=8309
This commit is contained in:
Ronnie Sahlberg 2003-08-29 09:32:16 +00:00
parent 56664b9b77
commit 19a99f8a34
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* find_dlg.c
* Routines for "find frame" window
*
* $Id: find_dlg.c,v 1.34 2003/08/29 04:56:46 guy Exp $
* $Id: find_dlg.c,v 1.35 2003/08/29 09:32:16 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -477,6 +477,8 @@ convert_string_to_hex(const char *string, size_t *nbytes)
break;
if (isspace(c))
continue; /* allow white space */
if (c==':')
continue; /* skip any ':' between bytes */
if (!isxdigit(c)) {
/* Not a valid hex digit - fail */
return NULL;
@ -515,6 +517,8 @@ convert_string_to_hex(const char *string, size_t *nbytes)
break;
if (isspace(c))
continue; /* allow white space */
if (c==':')
continue; /* skip any ':' between bytes */
/* From the loop above, we know this is a hex digit */
if (isdigit(c))
byte_val = c - '0';