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
This commit is contained in:
Daniel Stenberg 2003-08-06 22:32:47 +00:00
parent bbdc0394ff
commit bbe23945e4
1 changed files with 1 additions and 0 deletions

View 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;