about summary refs log tree commit diff
path: root/converter/pbm/pbmtonokia.c
diff options
context:
space:
mode:
Diffstat (limited to 'converter/pbm/pbmtonokia.c')
-rw-r--r--converter/pbm/pbmtonokia.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/converter/pbm/pbmtonokia.c b/converter/pbm/pbmtonokia.c
index c94a80c5..47745288 100644
--- a/converter/pbm/pbmtonokia.c
+++ b/converter/pbm/pbmtonokia.c
@@ -59,23 +59,6 @@ uppercase(const char * const subject) {
 
 
 
-static bool
-ishexstring(const char * const subject) {
-
-    bool retval;
-    unsigned int i;
-
-    retval = TRUE;  /* initial assumption */
-
-    for (i = 0; i < strlen(subject); ++i)
-        if (!ISXDIGIT(subject[i]))
-            retval = FALSE;
-
-    return retval;
-}
-
-
-
 static void
 parseCommandLine(int argc, char ** argv,
                  struct cmdlineInfo * const cmdlineP) {
@@ -131,7 +114,7 @@ parseCommandLine(int argc, char ** argv,
         if (strlen(netOpt) != 6)
             pm_error("-net option must be 6 hex digits long.  "
                      "You specified %u characters", strlen(netOpt));
-        else if (!ishexstring(netOpt))
+        else if (!strishex(netOpt))
             pm_error("-net option must be hexadecimal.  You specified '%s'",
                      netOpt);
         else