mirror of
https://github.com/bjango/istatserverlinux.git
synced 2025-10-21 15:08:08 +00:00
Fix c++ name conflict with bind() #14
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user