diff options
author | Joseph Henry <josephjah@gmail.com> | 2018-11-11 14:23:24 -0800 |
---|---|---|
committer | Joseph Henry <josephjah@gmail.com> | 2018-11-11 14:23:24 -0800 |
commit | c6ae81fac751e02bfd898eb560a0efb38d037485 (patch) | |
tree | c0170d2575be1b9262d62e3f59607470e51d5b89 /osdep | |
parent | 79086f085803b1677e920472559ed6e043b1b4a1 (diff) | |
download | infinitytier-c6ae81fac751e02bfd898eb560a0efb38d037485.tar.gz infinitytier-c6ae81fac751e02bfd898eb560a0efb38d037485.zip |
Added preprocessor check for __APPLE__ as an attempted fix for ticket #600
Diffstat (limited to 'osdep')
-rw-r--r-- | osdep/Binder.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/Binder.hpp b/osdep/Binder.hpp index 95efb641..be9d9ca3 100644 --- a/osdep/Binder.hpp +++ b/osdep/Binder.hpp @@ -373,7 +373,7 @@ public: tcps = phy.tcpListen(reinterpret_cast<const struct sockaddr *>(&(ii->first)),(void *)0); if ((udps)&&(tcps)) { #ifdef __LINUX__ - // Bind Linux sockets to their device so routes tha we manage do not override physical routes (wish all platforms had this!) + // Bind Linux sockets to their device so routes that we manage do not override physical routes (wish all platforms had this!) if (ii->second.length() > 0) { char tmp[256]; Utils::scopy(tmp,sizeof(tmp),ii->second.c_str()); |