Skip to content

Commit 66ba7b0

Browse files
committed
Cosmetic: fix static warning
1 parent 1e2ccc1 commit 66ba7b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transaction.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ int Transaction::processURI(const char *uri, const char *method,
523523
}
524524
if (netloc != std::string::npos && fullDomain == true) {
525525
size_t path = m_uri_decoded.find("/", netloc);
526-
if (path != std::string::npos && fullDomain == true) {
526+
if (path != std::string::npos) {
527527
parsedURI = m_uri_decoded.substr(path);
528528
}
529529
}

0 commit comments

Comments
 (0)