diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2018-07-19 14:21:05 -0400 |
---|---|---|
committer | Lawrence Nahum <lawrence@greenaddress.it> | 2018-09-01 15:25:03 +0200 |
commit | 9256f7d13f5b68ebc2981e8f45777f4bdc43f1b3 (patch) | |
tree | e38a99ab0f436e22098f6890ba4624541af6fd96 /src/net.cpp | |
parent | 2070a545e2c4e8c2dff4c0fb40b8fd2f68fc2cad (diff) |
build: avoid getifaddrs when unavailable
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index ad9c5e1d81..b3a991b707 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2167,7 +2167,7 @@ void Discover() } } } -#else +#elif (HAVE_DECL_GETIFADDRS && HAVE_DECL_FREEIFADDRS) // Get local host ip struct ifaddrs* myaddrs; if (getifaddrs(&myaddrs) == 0) |