diff options
Diffstat (limited to 'source3/winbindd/idmap_tdb.c')
-rw-r--r-- | source3/winbindd/idmap_tdb.c | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/source3/winbindd/idmap_tdb.c b/source3/winbindd/idmap_tdb.c index 6acf1e4573..af91ee9278 100644 --- a/source3/winbindd/idmap_tdb.c +++ b/source3/winbindd/idmap_tdb.c @@ -476,51 +476,6 @@ static NTSTATUS idmap_tdb_allocate_id(struct unixid *xid) } /********************************** - Get current highest id. -**********************************/ - -static NTSTATUS idmap_tdb_get_hwm(struct unixid *xid) -{ - const char *hwmkey; - const char *hwmtype; - uint32_t hwm; - uint32_t high_hwm; - - /* Get current high water mark */ - switch (xid->type) { - - case ID_TYPE_UID: - hwmkey = HWM_USER; - hwmtype = "UID"; - high_hwm = idmap_tdb_state.high_uid; - break; - - case ID_TYPE_GID: - hwmkey = HWM_GROUP; - hwmtype = "GID"; - high_hwm = idmap_tdb_state.high_gid; - break; - - default: - return NT_STATUS_INVALID_PARAMETER; - } - - if ((hwm = dbwrap_fetch_int32(idmap_alloc_db, hwmkey)) == -1) { - return NT_STATUS_INTERNAL_DB_ERROR; - } - - xid->id = hwm; - - /* Warn if it is out of range */ - if (hwm >= high_hwm) { - DEBUG(0, ("Warning: %s range full!! (max: %lu)\n", - hwmtype, (unsigned long)high_hwm)); - } - - return NT_STATUS_OK; -} - -/********************************** Set high id. **********************************/ @@ -1018,7 +973,6 @@ static struct idmap_alloc_methods db_alloc_methods = { .init = idmap_tdb_alloc_init, .allocate_id = idmap_tdb_allocate_id, - .get_id_hwm = idmap_tdb_get_hwm, .set_id_hwm = idmap_tdb_set_hwm, .close_fn = idmap_tdb_alloc_close }; |