Changed Curl_strlcat to strlcat, which is the one guaranteed to exist
authorDan Fandrich <dan@coneharvesters.com>
Sun, 12 Oct 2008 15:17:15 +0000 (15:17 +0000)
committerDan Fandrich <dan@coneharvesters.com>
Sun, 12 Oct 2008 15:17:15 +0000 (15:17 +0000)
lib/if2ip.c

index a540500..72fd028 100644 (file)
@@ -85,7 +85,7 @@ char *Curl_if2ip(int af, const char *interface, char *buf, int buf_size)
        } else
           addr = &((struct sockaddr_in *)iface->ifa_addr)->sin_addr;
         ip = (char *) Curl_inet_ntop(af, addr, buf, buf_size);
-       Curl_strlcat(buf, scope, buf_size);
+       strlcat(buf, scope, buf_size);
        break;
       }
     }