mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
httpd: follow-up to previous commit, replace strstr() with memcmp()
This commit is contained in:
parent
fdd702e61b
commit
89dca4588f
@ -874,11 +874,11 @@ get_http_headers(struct http_state *hs, const char *uri)
|
|||||||
special case. We assume that any filename with "404" in it must be
|
special case. We assume that any filename with "404" in it must be
|
||||||
indicative of a 404 server error whereas all other files require
|
indicative of a 404 server error whereas all other files require
|
||||||
the 200 OK header. */
|
the 200 OK header. */
|
||||||
if (strstr(uri, "/404.") == uri) {
|
if (memcmp(uri, "/404.", 5) == 0) {
|
||||||
hs->hdrs[HDR_STRINGS_IDX_HTTP_STATUS] = g_psHTTPHeaderStrings[HTTP_HDR_NOT_FOUND];
|
hs->hdrs[HDR_STRINGS_IDX_HTTP_STATUS] = g_psHTTPHeaderStrings[HTTP_HDR_NOT_FOUND];
|
||||||
} else if (strstr(uri, "/400.") == uri) {
|
} else if (memcmp(uri, "/400.", 5) == 0) {
|
||||||
hs->hdrs[HDR_STRINGS_IDX_HTTP_STATUS] = g_psHTTPHeaderStrings[HTTP_HDR_BAD_REQUEST];
|
hs->hdrs[HDR_STRINGS_IDX_HTTP_STATUS] = g_psHTTPHeaderStrings[HTTP_HDR_BAD_REQUEST];
|
||||||
} else if (strstr(uri, "/501.") == uri) {
|
} else if (memcmp(uri, "/501.", 5) == 0) {
|
||||||
hs->hdrs[HDR_STRINGS_IDX_HTTP_STATUS] = g_psHTTPHeaderStrings[HTTP_HDR_NOT_IMPL];
|
hs->hdrs[HDR_STRINGS_IDX_HTTP_STATUS] = g_psHTTPHeaderStrings[HTTP_HDR_NOT_IMPL];
|
||||||
} else {
|
} else {
|
||||||
hs->hdrs[HDR_STRINGS_IDX_HTTP_STATUS] = g_psHTTPHeaderStrings[HTTP_HDR_OK];
|
hs->hdrs[HDR_STRINGS_IDX_HTTP_STATUS] = g_psHTTPHeaderStrings[HTTP_HDR_OK];
|
||||||
|
Loading…
Reference in New Issue
Block a user