From e8d7e82c8cd0ee3f319e96f89a3a66451b44c093 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Wed, 7 Feb 2018 21:19:07 +0100 Subject: [PATCH] httpd: fix simple typo --- src/apps/httpd/httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/httpd/httpd.c b/src/apps/httpd/httpd.c index 9fcb7c19..f4ba5914 100644 --- a/src/apps/httpd/httpd.c +++ b/src/apps/httpd/httpd.c @@ -975,7 +975,7 @@ get_http_headers(struct http_state *hs, const char *uri) * - HTTP_DATA_TO_SEND_CONTINUE: continue with sending HTTP body * - HTTP_DATA_TO_SEND_BREAK: data has been enqueued, headers pending, * so don't send HTTP body yet - * - HTTP_DATA_TO_SEND_FREED: htt_state and pcb are already freed + * - HTTP_DATA_TO_SEND_FREED: http_state and pcb are already freed */ static u8_t http_send_headers(struct altcp_pcb *pcb, struct http_state *hs)