Do not log events 98 and 99 as errors

This commit is contained in:
z3APA3A 2019-01-20 17:33:35 +03:00
parent 76b040bfb8
commit eed6e2962e

View File

@ -887,6 +887,7 @@ for(;;){
if(res != 99) { if(res != 99) {
RETURN(res); RETURN(res);
} }
res = 0;
} }
contentlength64 = 0; contentlength64 = 0;
inbuf = 0; inbuf = 0;
@ -1051,6 +1052,7 @@ for(;;){
if((res = mapsocket(param, conf.timeouts[CONNECTION_S])) != 98){ if((res = mapsocket(param, conf.timeouts[CONNECTION_S])) != 98){
RETURN(res); RETURN(res);
} }
res = 0;
param->waitserver64 = 0; param->waitserver64 = 0;
} }
} while(param->chunked); } while(param->chunked);