diff options
author | Max Kellermann <max@duempel.org> | 2013-10-14 22:00:21 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-14 22:00:21 +0200 |
commit | 6fd481df978ad4666780ef838e6c8540f6ea190f (patch) | |
tree | e437903388be90df8a92c58c05af8f4f51c7e8e1 /src/output/HttpdClient.cxx | |
parent | b915e433911b4597626c721a8ae4a6e9dae6ac5a (diff) | |
download | mpd-6fd481df978ad4666780ef838e6c8540f6ea190f.tar.gz mpd-6fd481df978ad4666780ef838e6c8540f6ea190f.tar.xz mpd-6fd481df978ad4666780ef838e6c8540f6ea190f.zip |
Mapper, ...: use memcmp() instead of strncmp() where appropriate
Micro-optimization.
Diffstat (limited to '')
-rw-r--r-- | src/output/HttpdClient.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/HttpdClient.cxx b/src/output/HttpdClient.cxx index f7ae8d10c..5b65cc956 100644 --- a/src/output/HttpdClient.cxx +++ b/src/output/HttpdClient.cxx @@ -78,7 +78,7 @@ HttpdClient::HandleLine(const char *line) assert(state != RESPONSE); if (state == REQUEST) { - if (strncmp(line, "GET /", 5) != 0) { + if (memcmp(line, "GET /", 5) != 0) { /* only GET is supported */ LogWarning(httpd_output_domain, "malformed request line from client"); @@ -86,7 +86,7 @@ HttpdClient::HandleLine(const char *line) } line = strchr(line + 5, ' '); - if (line == nullptr || strncmp(line + 1, "HTTP/", 5) != 0) { + if (line == nullptr || memcmp(line + 1, "HTTP/", 5) != 0) { /* HTTP/0.9 without request headers */ BeginResponse(); return true; |