mirror of
https://github.com/bjango/istatserverlinux.git
synced 2025-10-21 23:18:07 +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());
|
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;
|
cout << "Could not bind UNIX socket: " << strerror(errno) << endl;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
Reference in New Issue
Block a user