Convert spaces to tabs.

This commit is contained in:
Micke Prag 2013-02-13 17:54:43 +01:00
parent d5d22aceb5
commit b6b78ad157

View file

@ -18,7 +18,7 @@
#include "common/Socket.h"
#if defined(_MACOSX) && !defined(SOCK_CLOEXEC)
#define SOCK_CLOEXEC 0
#define SOCK_CLOEXEC 0
#endif
class ConnectionListener::PrivateData {
@ -58,7 +58,7 @@ void ConnectionListener::run() {
}
#if defined(_MACOSX)
int op = fcntl(serverSocket, F_GETFD);
fcntl(serverSocket, F_SETFD, op | FD_CLOEXEC); // OS X doesn't support SOCK_CLOEXEC yet
fcntl(serverSocket, F_SETFD, op | FD_CLOEXEC); // OS X doesn't support SOCK_CLOEXEC yet
#endif
name.sun_family = AF_LOCAL;
memset(name.sun_path, '\0', sizeof(name.sun_path));