From 8840a622d9b47293b222b5cf563ba9b59fca872b Mon Sep 17 00:00:00 2001 From: asterix Date: Thu, 13 Oct 2011 17:18:46 +0000 Subject: [PATCH] Fix comments. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@5164 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/net/http.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bertos/net/http.c b/bertos/net/http.c index fbb43c65..0283a210 100644 --- a/bertos/net/http.c +++ b/bertos/net/http.c @@ -304,7 +304,7 @@ static http_handler_t cgi_search(const char *name, HttpCGI *table) if (!strcmp(table[i].name, ext)) { - LOG_INFO("Match all ext %s\n", ext); + LOG_INFO("Match all ext: %s\n", ext); break; } } @@ -313,7 +313,7 @@ static http_handler_t cgi_search(const char *name, HttpCGI *table) if (strstr(name, table[i].name) != NULL) { - LOG_INFO("Match all name %s\n", name); + LOG_INFO("Match all name: %s\n", name); break; } } @@ -322,7 +322,7 @@ static http_handler_t cgi_search(const char *name, HttpCGI *table) if (!strcmp(table[i].name, name)) { - LOG_INFO("Match all word %s\n", name); + LOG_INFO("Word match: %s\n", name); break; } } @@ -361,7 +361,7 @@ void http_poll(struct netconn *server) memset(req_string, 0, sizeof(req_string)); http_getPageName(rx_buf, len, req_string, sizeof(req_string)); - LOG_INFO("Search %s\n", req_string); + LOG_INFO("Search: %s\n", req_string); if (req_string[0] == '\0') strcpy(req_string, HTTP_DEFAULT_PAGE); -- 2.25.1