Fix brown-bag bug introduced in last check-in.
authorBen Pfaff <blp@gnu.org>
Wed, 10 Mar 2004 07:45:16 +0000 (07:45 +0000)
committerBen Pfaff <blp@gnu.org>
Wed, 10 Mar 2004 07:45:16 +0000 (07:45 +0000)
src/ChangeLog
src/format.c

index 5e7f0c1a3757b1b36a3c27479cd8479bc817cef5..8450557f341a59ae059f2b230de3bc79c3e8f119 100644 (file)
@@ -1,3 +1,8 @@
+Tue Mar  9 23:44:40 2004  Ben Pfaff  <blp@gnu.org>
+
+       * format.c: (parse_format_specifier_name) Fix brown-bag bug
+       introduced in last check-in.
+
 Tue Mar  9 23:10:41 2004  Ben Pfaff  <blp@gnu.org>
 
        * format.c: (global array translate_fmt[]) Removed.
index 37e691a4a7ae20f0483de8a262f1851012ed1a0b..4ff96241ae55815939134f294eb5677721916a30 100644 (file)
@@ -58,7 +58,7 @@ parse_format_specifier_name (const char **cp, int allow_xt)
       /* Find format. */
       for (idx = 0; idx < FMT_NUMBER_OF_FORMATS; idx++)
         if (strlen (formats[idx].name) == ep - sp
-            && memcmp (formats[idx].name, sp, ep - sp))
+            && !memcmp (formats[idx].name, sp, ep - sp))
           break;
 
       /* Check format. */
@@ -84,8 +84,13 @@ parse_format_specifier_name (const char **cp, int allow_xt)
       idx = -1;
     }
       
-  if (cp != NULL)
-    *cp = ep;
+  if (cp != NULL) 
+    {
+      if (idx != -1)
+        *cp = ep;
+      else
+        *cp = NULL;
+    }
 
   return idx;
 }