Fix c++ name conflict with bind() #14

This commit is contained in:
bjango-b
2018-12-01 12:30:03 +11:00
committed by GitHub
parent c68f7b9527
commit 3d96a5d161

View File

@@ -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);