diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/proto.h | 1 | ||||
-rw-r--r-- | source3/winbindd/idmap.c | 13 |
2 files changed, 0 insertions, 14 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 18b37543da..c60c18b3ba 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -6016,7 +6016,6 @@ void idmap_close(void); NTSTATUS idmap_init_cache(void); NTSTATUS idmap_allocate_uid(struct unixid *id); NTSTATUS idmap_allocate_gid(struct unixid *id); -NTSTATUS idmap_set_uid_hwm(struct unixid *id); NTSTATUS idmap_set_gid_hwm(struct unixid *id); NTSTATUS idmap_backends_unixid_to_sid(const char *domname, struct id_map *id); diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index 4229bf47b7..841adc8ef0 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -646,19 +646,6 @@ NTSTATUS idmap_allocate_gid(struct unixid *id) return ctx->methods->allocate_id(id); } -NTSTATUS idmap_set_uid_hwm(struct unixid *id) -{ - struct idmap_alloc_context *ctx; - NTSTATUS ret; - - if (!NT_STATUS_IS_OK(ret = idmap_alloc_init(&ctx))) { - return ret; - } - - id->type = ID_TYPE_UID; - return ctx->methods->set_id_hwm(id); -} - NTSTATUS idmap_set_gid_hwm(struct unixid *id) { struct idmap_alloc_context *ctx; |