From 46df6a2b72f5295eac99332a0f7287e010d7c47c Mon Sep 17 00:00:00 2001 From: sb1066 Date: Sun, 31 Oct 2010 15:00:47 +0000 Subject: [PATCH] Some http header fields can be declared, but not set. Ignore these fields rather than exiting. --- src/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.c b/src/http.c index c8866888..7608e866 100644 --- a/src/http.c +++ b/src/http.c @@ -722,7 +722,7 @@ http_serve_requests(http_connection_t *hc, htsbuf_queue_t *spill) break; /* header complete */ if((n = http_tokenize(hdrline, argv, 2, -1)) < 2) - return; + continue; if((c = strrchr(argv[0], ':')) == NULL) return;