diff options
| author | Zousar Shaker <[email protected]> | 2021-11-29 23:27:18 -0700 |
|---|---|---|
| committer | Zousar Shaker <[email protected]> | 2021-11-29 23:27:18 -0700 |
| commit | 25c2eec10f64d22ee64a84a6bfb34e7933443c79 (patch) | |
| tree | cd9885775cce66009a9c65116e2053140e9c5485 /zenhttp/httpsys.cpp | |
| parent | Disable forced elevation for zenserver.exe. (diff) | |
| download | zen-25c2eec10f64d22ee64a84a6bfb34e7933443c79.tar.xz zen-25c2eec10f64d22ee64a84a6bfb34e7933443c79.zip | |
Address review feedback and fix issue when deploying.
Diffstat (limited to 'zenhttp/httpsys.cpp')
| -rw-r--r-- | zenhttp/httpsys.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenhttp/httpsys.cpp b/zenhttp/httpsys.cpp index 0d055f706..e9472e3b8 100644 --- a/zenhttp/httpsys.cpp +++ b/zenhttp/httpsys.cpp @@ -791,7 +791,7 @@ HttpSysServer::InitializeServer(int BasePort) // port for the current user. eg: // netsh http add urlacl url=http://*:1337/ user=<some_user> - std::vector<std::u8string_view> Hosts { u8"[::1]"sv, u8"localhost"sv, u8"127.0.0.1"sv }; + const std::u8string_view Hosts[] = { u8"[::1]"sv, u8"localhost"sv, u8"127.0.0.1"sv }; for (const std::u8string_view Host : Hosts) { |