Skip to content

Commit

Permalink
listenfd => listenFD
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersbakken committed Oct 29, 2015
1 parent 95fb9d0 commit 86feab9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ bool Server::initServers()

warning() << "got fd from launchd: " << fds[0];

if (!mUnixServer->listenfd(fds[0])) {
if (!mUnixServer->listenFD(fds[0])) {
goto launchd_done;
}

Expand All @@ -247,7 +247,7 @@ bool Server::initServers()

mUnixServer.reset(new SocketServer);

if (!mUnixServer->listenfd(3)) {
if (!mUnixServer->listenFD(3)) {
return false;
}

Expand Down

0 comments on commit 86feab9

Please sign in to comment.