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
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;