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
Родитель 592686bee9
Коммит 3347ced899
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -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 */