diff options
Diffstat (limited to 'src/output/plugins/httpd/HttpdOutputPlugin.cxx')
-rw-r--r-- | src/output/plugins/httpd/HttpdOutputPlugin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/plugins/httpd/HttpdOutputPlugin.cxx b/src/output/plugins/httpd/HttpdOutputPlugin.cxx index 95e3edaab..526ef8ce6 100644 --- a/src/output/plugins/httpd/HttpdOutputPlugin.cxx +++ b/src/output/plugins/httpd/HttpdOutputPlugin.cxx @@ -118,7 +118,7 @@ HttpdOutput::Unbind() * HttpdOutput.clients linked list. */ inline void -HttpdOutput::AddClient(UniqueSocketDescriptor &&fd) +HttpdOutput::AddClient(UniqueSocketDescriptor fd) { auto *client = new HttpdClient(*this, std::move(fd), GetEventLoop(), !encoder->ImplementsTag()); @@ -151,7 +151,7 @@ HttpdOutput::RunDeferred() } void -HttpdOutput::OnAccept(UniqueSocketDescriptor &&fd, +HttpdOutput::OnAccept(UniqueSocketDescriptor fd, SocketAddress address, gcc_unused int uid) { /* the listener socket has become readable - a client has |