From c08a45ebd9aa18d0d5795c90fc467cee089f2b7f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 16 Jun 2010 17:30:07 +0200 Subject: s3:idmap_tdb2: rename idmap_tdb2_alloc_load -> idmap_tdb2_init_hwm --- source3/winbindd/idmap_tdb2.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'source3/winbindd/idmap_tdb2.c') diff --git a/source3/winbindd/idmap_tdb2.c b/source3/winbindd/idmap_tdb2.c index f679553b45..c5992d45d0 100644 --- a/source3/winbindd/idmap_tdb2.c +++ b/source3/winbindd/idmap_tdb2.c @@ -53,9 +53,9 @@ static struct db_context *idmap_tdb2; /* - load the idmap allocation ranges and high/low water marks -*/ -static NTSTATUS idmap_tdb2_alloc_load(struct idmap_domain *dom) + * check and initialize high/low water marks in the db + */ +static NTSTATUS idmap_tdb2_init_hwm(struct idmap_domain *dom) { uint32 low_id; @@ -117,8 +117,7 @@ static NTSTATUS idmap_tdb2_open_db(struct idmap_domain *dom) return NT_STATUS_UNSUCCESSFUL; } - /* load the ranges and high/low water marks */ - return idmap_tdb2_alloc_load(dom); + return idmap_tdb2_init_hwm(dom); } -- cgit