Fix comments.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 18 Oct 2011 09:34:15 +0000 (09:34 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 18 Oct 2011 09:34:15 +0000 (09:34 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@5169 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/net/http.c

index 0283a210399860b01f09810c1c45ad59299ec7d9..0a49d7f8e819baf52f8d96ea6742edc180a0812e 100644 (file)
@@ -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;
                        }
                }