aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/internal.c')
-rw-r--r--src/microhttpd/internal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/microhttpd/internal.c b/src/microhttpd/internal.c
index 57553251..dee21e9e 100644
--- a/src/microhttpd/internal.c
+++ b/src/microhttpd/internal.c
@@ -75,12 +75,12 @@ MHD_state_to_string (enum MHD_CONNECTION_STATE state)
75 return "chunked body unready"; 75 return "chunked body unready";
76 case MHD_CONNECTION_CHUNKED_BODY_READY: 76 case MHD_CONNECTION_CHUNKED_BODY_READY:
77 return "chunked body ready"; 77 return "chunked body ready";
78 case MHD_CONNECTION_BODY_SENT: 78 case MHD_CONNECTION_CHUNKED_BODY_SENT:
79 return "body sent"; 79 return "chunked body sent";
80 case MHD_CONNECTION_FOOTERS_SENDING: 80 case MHD_CONNECTION_FOOTERS_SENDING:
81 return "footers sending"; 81 return "footers sending";
82 case MHD_CONNECTION_FOOTERS_SENT: 82 case MHD_CONNECTION_FULL_REPLY_SENT:
83 return "footers sent"; 83 return "reply sent completely";
84 case MHD_CONNECTION_CLOSED: 84 case MHD_CONNECTION_CLOSED:
85 return "closed"; 85 return "closed";
86 default: 86 default: