summaryrefslogtreecommitdiff
path: root/source3/winbindd/wb_sid2gid.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-12-24 12:52:24 +0100
committerVolker Lendecke <vl@samba.org>2009-12-26 12:26:07 +0100
commit634d084517652a053587a2f13825a49a67460f12 (patch)
tree30affbc9187e9761293ce0e20e9e6e8c3ccfd4ce /source3/winbindd/wb_sid2gid.c
parent50e5f9dc512a7356b16bb68bdd4a80ae9dd436b3 (diff)
downloadsamba-634d084517652a053587a2f13825a49a67460f12.tar.gz
samba-634d084517652a053587a2f13825a49a67460f12.tar.bz2
samba-634d084517652a053587a2f13825a49a67460f12.zip
s3: Replace IS_DOMAIN_OFFLINE by a function
Diffstat (limited to 'source3/winbindd/wb_sid2gid.c')
-rw-r--r--source3/winbindd/wb_sid2gid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/wb_sid2gid.c b/source3/winbindd/wb_sid2gid.c
index a578746ea2..e15d563cd7 100644
--- a/source3/winbindd/wb_sid2gid.c
+++ b/source3/winbindd/wb_sid2gid.c
@@ -54,7 +54,7 @@ struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
DEBUG(10, ("idmap_cache_find_sid2gid found %d%s\n",
(int)state->gid, expired ? " (expired)": ""));
- if (!expired || IS_DOMAIN_OFFLINE(find_our_domain())) {
+ if (!expired || is_domain_offline(find_our_domain())) {
if (state->gid == -1) {
tevent_req_nterror(req, NT_STATUS_NONE_MAPPED);
} else {