summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/lib/http/http.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/lib/http/http.c b/source4/lib/http/http.c
index 2d1f635d380..6be053136c8 100644
--- a/source4/lib/http/http.c
+++ b/source4/lib/http/http.c
@@ -656,6 +656,9 @@ static const char *http_method_str(enum http_cmd_type type)
const char *method;
switch (type) {
+ case HTTP_REQ_POST:
+ method = "POST";
+ break;
case HTTP_REQ_RPC_IN_DATA:
method = "RPC_IN_DATA";
break;