Commit a275365c authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Avoid Curl_if2ip() on Interix as well. Fix by Rodney.

parent 80ef1bad
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@
#endif

#if !defined(WIN32) && !defined(__BEOS__) && !defined(__CYGWIN32__) && \
    ! defined(__riscos__)
    !defined(__riscos__) && !defined(__INTERIX)

#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
+2 −2
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
#include "setup.h"

#if !defined(WIN32) && !defined(__BEOS__) && !defined(__CYGWIN32__) && \
    ! defined(__riscos__)
    !defined(__riscos__) !defined(__INTERIX)
extern char *Curl_if2ip(char *interface, char *buf, int buf_size);
#else
#define Curl_if2ip(a,b,c) NULL