aboutsummaryrefslogtreecommitdiff
path: root/lib/if2ip.c
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2008-10-12 15:17:15 +0000
committerDan Fandrich <dan@coneharvesters.com>2008-10-12 15:17:15 +0000
commit8eb64ad6008e674fc2559892c3858f7af9edcd75 (patch)
treed625353ccfcebda9e5ec7c66bd95a48e144d44a7 /lib/if2ip.c
parentd74d3fe8515b13a899ae28394bd52810ed6b46a4 (diff)
Changed Curl_strlcat to strlcat, which is the one guaranteed to exist
Diffstat (limited to 'lib/if2ip.c')
-rw-r--r--lib/if2ip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/if2ip.c b/lib/if2ip.c
index a54050040..72fd0281f 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;
}
}