added a default in the switch in an attempt to avoid the moot "will never be

executed" warning by gcc 3.4.0
This commit is contained in:
Daniel Stenberg 2004-11-08 14:46:05 +00:00
parent 592686bee9
commit 3347ced899
1 changed files with 2 additions and 0 deletions

View File

@ -1562,6 +1562,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
if(str2num(&config->retry_maxtime, nextarg))
return PARAM_BAD_NUMERIC;
break;
default:
break;
}
break;
case '#': /* added 19990617 larsa */