utils: do not emit eof chunk for 204/304 responses
[project/uhttpd.git] / relay.c
diff --git a/relay.c b/relay.c
index 619534970c7c5b948031b877a50e52aa7138b103..7331a0a59d2eedbe25e984b8b60a0d62580581c9 100644 (file)
--- a/relay.c
+++ b/relay.c
@@ -142,7 +142,9 @@ static void relay_read_cb(struct ustream *s, int bytes)
        if (!buf || !len)
                return;
 
-       uh_chunk_write(cl, buf, len);
+       if (!r->skip_data)
+               uh_chunk_write(cl, buf, len);
+
        ustream_consume(s, len);
 }