]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
Fix compile on OpenBSD.
authorSimon Ruderich <simon@ruderich.org>
Sat, 7 Dec 2013 21:31:58 +0000 (22:31 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 7 Dec 2013 21:31:58 +0000 (22:31 +0100)
src/connection.c
tests/client.c

index ad7298a876033dd3b37e7303901506c9f4b9b463..4538f7532fd5681bf49c775c80ee36dd00f817c5 100644 (file)
@@ -844,7 +844,9 @@ static int connect_to_host(const char *hostname, const char *port) {
     gai_hints.ai_socktype = SOCK_STREAM;
     gai_hints.ai_protocol = 0;
     gai_hints.ai_flags    = AI_NUMERICSERV /* given port is numeric */
+#ifdef AI_ADDRCONFIG
                           | AI_ADDRCONFIG  /* supported by this computer */
+#endif
                           ;
     gai_return = getaddrinfo(hostname, port, &gai_hints, &gai_result);
     if (gai_return != 0) {
index 23dca4b3c580dbac340c42be38f4b0d18118b19d..798c5cbdc3ff4aaf3fcde75fe6756d5a5b9e7a4f 100644 (file)
@@ -224,7 +224,9 @@ static int connect_to_host(const char *hostname, const char *port) {
     gai_hints.ai_socktype = SOCK_STREAM;
     gai_hints.ai_protocol = 0;
     gai_hints.ai_flags    = AI_NUMERICSERV /* given port is numeric */
+#ifdef AI_ADDRCONFIG
                           | AI_ADDRCONFIG  /* supported by this computer */
+#endif
                           ;
     gai_return = getaddrinfo(hostname, port, &gai_hints, &gai_result);
     if (gai_return != 0) {