From f3b412fbd6dd94d64eb6a63d88baef2816891c29 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 23 Sep 2005 00:38:22 +0000 Subject: r10438: Move portability functions to lib/replace/; replace now simply ensures that a given set of (working) POSIX functions are available (without prefixes to their names, etc). See lib/replace/README for a list. Functions that behave different from their POSIX specification (such as sys_select, sys_read, etc) have kept the sys_ prefix. (This used to be commit 29919a71059b29fa27a49b1f5b84bb8881de65fc) --- source4/heimdal_build/glue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/heimdal_build/glue.c') diff --git a/source4/heimdal_build/glue.c b/source4/heimdal_build/glue.c index 07c58b7789..819a395ca8 100644 --- a/source4/heimdal_build/glue.c +++ b/source4/heimdal_build/glue.c @@ -43,7 +43,7 @@ krb5_error_code KRB5_LIB_FUNCTION krb5_get_all_client_addrs(krb5_context context if (res->val[i].address.data == NULL) { return ENOMEM; } - ((struct in_addr *)res->val[i].address.data)->s_addr = sys_inet_addr(ip); + ((struct in_addr *)res->val[i].address.data)->s_addr = inet_addr(ip); } return 0; -- cgit