ref: 24b331f9da5eebec18593cd76906ac78ce4d2afd
parent: ad53cff966fa2132ba25e88fe1ecbdec9c5d10ba
parent: 6675058c71b9823f987e9a2272015e9d01601bff
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Jun 24 17:54:21 EDT 2018
merge
--- a/sys/src/cmd/webfs/http.c
+++ b/sys/src/cmd/webfs/http.c
@@ -795,12 +795,16 @@
i -= (i % 100);
goto Status;
}
+ goto Error;
case 100: /* Continue */
case 101: /* Switching Protocols */
+ case 102: /* Processing */
+ case 103: /* Early Hints */
while(k = rhdr){rhdr = k->next;
free(k);
}
+ strcpy(status, "0 No status");
goto Cont;
case 304: /* Not Modified */
nobody = 1;
--
⑨