]> granicus.if.org Git - curl/commitdiff
untabify
authorDaniel Stenberg <daniel@haxx.se>
Wed, 6 Oct 2004 06:58:42 +0000 (06:58 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 6 Oct 2004 06:58:42 +0000 (06:58 +0000)
lib/if2ip.c

index b167b8df6553ca9b6215fe81021957be76a8075b..96ecc53480957107dd0dec4fe5d4c9dbf27d9652 100644 (file)
@@ -68,7 +68,7 @@
 #include "inet_ntoa_r.h"
 #endif
 
-#ifdef VMS
+#ifdef VMS
 #include <inet.h>
 #endif
 
@@ -100,7 +100,7 @@ char *Curl_if2ip(const char *interface, char *buf, int buf_size)
       return NULL; /* this can't be a fine interface name */
     memcpy(req.ifr_name, interface, len+1);
     req.ifr_addr.sa_family = AF_INET;
-#ifdef IOCTL_3_ARGS
+#ifdef IOCTL_3_ARGS
     if (SYS_ERROR == ioctl(dummy, SIOCGIFADDR, &req)) {
 #else
     if (SYS_ERROR == ioctl(dummy, SIOCGIFADDR, &req, sizeof(req))) {