From: asterix Date: Tue, 18 Oct 2011 09:34:15 +0000 (+0000) Subject: Fix comments. X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=671d458d1eaaa965925991ab1760ff71480f257f;p=bertos.git Fix comments. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@5169 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/net/http.c b/bertos/net/http.c index 0283a210..0a49d7f8 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 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 string: %s\n", name); break; } }