mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2024-12-27 21:35:41 +00:00
Warning fix for clang.
This commit is contained in:
parent
61170dc371
commit
0dd4f712a8
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ namespace kamokan {
|
|||
if (not host_port.empty()) {
|
||||
if (host_port == "from_downstream") {
|
||||
const uint16_t port = parCgiEnv->server_port();
|
||||
if ((80 != port and not parCgiEnv->https()) or 443 != port and parCgiEnv->https()) {
|
||||
if ((80 != port and not parCgiEnv->https()) or (443 != port and parCgiEnv->https())) {
|
||||
oss << ':' << port;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue