summaryrefslogtreecommitdiff
path: root/source3/winbindd
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2008-12-02 23:29:57 -0800
committerTim Prouty <tprouty@samba.org>2008-12-03 10:40:20 -0800
commit1eb743ab8e8b1141f99fabd3e4a46895c6dcc17e (patch)
treea43eb854b68ef6d65d6120d5ec0441bc26ea9612 /source3/winbindd
parentfcbf88115c217cfe5090f8d60ab7627681c648c8 (diff)
downloadsamba-1eb743ab8e8b1141f99fabd3e4a46895c6dcc17e.tar.gz
samba-1eb743ab8e8b1141f99fabd3e4a46895c6dcc17e.tar.bz2
samba-1eb743ab8e8b1141f99fabd3e4a46895c6dcc17e.zip
s3: Change sockaddr util function names for consistency
Also eliminates name conflicts with OneFS system libraries
Diffstat (limited to 'source3/winbindd')
-rw-r--r--source3/winbindd/winbindd_cm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c
index 3c69859731..5f592fc6b7 100644
--- a/source3/winbindd/winbindd_cm.c
+++ b/source3/winbindd/winbindd_cm.c
@@ -1038,7 +1038,7 @@ static bool add_one_dc_unique(TALLOC_CTX *mem_ctx, const char *domain_name,
/* Make sure there's no duplicates in the list */
for (i=0; i<*num; i++)
- if (addr_equal((struct sockaddr *)&(*dcs)[i].ss, (struct sockaddr *)pss))
+ if (sockaddr_equal((struct sockaddr *)&(*dcs)[i].ss, (struct sockaddr *)pss))
return False;
*dcs = TALLOC_REALLOC_ARRAY(mem_ctx, *dcs, struct dc_name_ip, (*num)+1);