aboutsummaryrefslogtreecommitdiffstats
path: root/src/Listen.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Listen.cxx')
-rw-r--r--src/Listen.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Listen.cxx b/src/Listen.cxx
index 1365cae3f..a953c80b4 100644
--- a/src/Listen.cxx
+++ b/src/Listen.cxx
@@ -67,8 +67,9 @@ listen_add_config_param(unsigned int port,
if (0 == strcmp(param->value.c_str(), "any")) {
return listen_socket->AddPort(port, error_r);
} else if (param->value[0] == '/' || param->value[0] == '~') {
- const auto path = config_parse_path(param, error_r);
- return !path.IsNull() && listen_socket->AddPath(path.c_str(), error_r);
+ auto path = config_parse_path(param, error_r);
+ return !path.IsNull() &&
+ listen_socket->AddPath(std::move(path), error_r);
} else {
return listen_socket->AddHost(param->value.c_str(), port,
error_r);