aboutsummaryrefslogtreecommitdiff
path: root/lib/mprintf.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-08-06 22:32:47 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-08-06 22:32:47 +0000
commitbbe23945e438ec74002df18ffd01b182c98175c5 (patch)
tree30d4a68bdc9d31efcc54865fb3935360fad13649 /lib/mprintf.c
parentbbdc0394ff9a3450b5a23a7699727436ca40cfb1 (diff)
fix the treatment of the variable width specifier '*', which caused a bug
in the urlglobbing just now, fixed in the debian bug tracker as Bug#203827
Diffstat (limited to 'lib/mprintf.c')
-rw-r--r--lib/mprintf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/mprintf.c b/lib/mprintf.c
index b51e883f1..23e12c8ac 100644
--- a/lib/mprintf.c
+++ b/lib/mprintf.c
@@ -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;