Remove unused field in the request-struct - quark - quark web server
git clone git://git.suckless.org/quark
Log
Files
Refs
LICENSE
---
commit 68be64e2c12f6ab5355a147484896eae12d2b166
parent 58d0f44e0395fe37b3575da35992b3d3e7f262d7
Author: Laslo Hunhold 
Date:   Sat, 22 Aug 2020 23:31:32 +0200

Remove unused field in the request-struct

Signed-off-by: Laslo Hunhold 

Diffstat:
  M http.h                              |       2 --

1 file changed, 0 insertions(+), 2 deletions(-)
---
diff --git a/http.h b/http.h
@@ -27,8 +27,6 @@ enum req_method {
 extern const char *req_method_str[];
 
 struct request {
-        char header[HEADER_MAX]; /* deprecated */ 
-
         enum req_method method;
         char target[PATH_MAX];
         char field[NUM_REQ_FIELDS][FIELD_MAX];