Skip to content
Snippets Groups Projects
Commit bbe23945 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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
parent bbdc0394
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment