From 3d96a5d161cc36fde06a15184a7e80134f344bf9 Mon Sep 17 00:00:00 2001 From: bjango-b Date: Sat, 1 Dec 2018 12:30:03 +1100 Subject: [PATCH] Fix c++ name conflict with bind() #14 --- src/Daemon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Daemon.cpp b/src/Daemon.cpp index 8c8b37a..4e06271 100644 --- a/src/Daemon.cpp +++ b/src/Daemon.cpp @@ -174,7 +174,7 @@ void Daemon::create(bool _back, const string &_user, const string &_group) length = offsetof(struct sockaddr_un, sun_path) + strlen(sockfile.c_str()); - if (bind(unix_socket, (struct sockaddr *) &local, length) == -1) + if (::bind(unix_socket, (struct sockaddr *) &local, length) == -1) { cout << "Could not bind UNIX socket: " << strerror(errno) << endl; exit(1);