diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-05-03 09:34:06 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-05-03 07:37:07 +0200 |
commit | b96389d3e17013fd22a64b6ce54478bd912d06b3 (patch) | |
tree | acb87a3e14212376e93c6554423f8233af0999be /source4/dsdb | |
parent | 80f1d49b61560f326fb55f2df09cc4f30e7a85ea (diff) | |
download | samba-b96389d3e17013fd22a64b6ce54478bd912d06b3.tar.gz samba-b96389d3e17013fd22a64b6ce54478bd912d06b3.tar.bz2 samba-b96389d3e17013fd22a64b6ce54478bd912d06b3.zip |
s4-socket: rename allow_access() to socket_allow_access()
this prevents a symbol collision with s3
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 0c920d7d85..0cba20b465 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -1762,7 +1762,7 @@ const char *samdb_client_site_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, allow_list[0] = l_subnet_name; - if (allow_access(mem_ctx, NULL, allow_list, "", ip_address)) { + if (socket_allow_access(mem_ctx, NULL, allow_list, "", ip_address)) { sites_dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx, res->msgs[i], "siteObject"); |