]> granicus.if.org Git - curl/commitdiff
fix the treatment of the variable width specifier '*', which caused a bug
authorDaniel Stenberg <daniel@haxx.se>
Wed, 6 Aug 2003 22:32:47 +0000 (22:32 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 6 Aug 2003 22:32:47 +0000 (22:32 +0000)
in the urlglobbing just now, fixed in the debian bug tracker as Bug#203827

lib/mprintf.c

index b51e883f137d688e792837a298a38179cf6df20f..23e12c8ac88c3a4ed6d3ef08a048dc47cdd2ffa0 100644 (file)
@@ -171,6 +171,7 @@ static BOOL dprintf_IsQualifierNoDollar(char c)
   case '0': case '1': case '2': case '3': case '4':
   case '5': case '6': case '7': case '8': case '9':
   case 'h': case 'l': case 'L': case 'Z': case 'q':
+  case '*':
     return TRUE;
   default:
     return FALSE;