From 8eb64ad6008e674fc2559892c3858f7af9edcd75 Mon Sep 17 00:00:00 2001
From: Dan Fandrich <dan@coneharvesters.com>
Date: Sun, 12 Oct 2008 15:17:15 +0000
Subject: [PATCH] Changed Curl_strlcat to strlcat, which is the one guaranteed
 to exist

---
 lib/if2ip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/if2ip.c b/lib/if2ip.c
index a540500402..72fd0281f8 100644
--- a/lib/if2ip.c
+++ b/lib/if2ip.c
@@ -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;
       }
     }
-- 
GitLab