diff options
author | Volker Lendecke <vl@samba.org> | 2008-07-03 23:29:49 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-07-05 12:19:13 +0200 |
commit | ca342870639f8720b1becb9b6a5587feafbeec11 (patch) | |
tree | a31bc5a9494d18631448d1c00ee41d8a88cfa428 /source3/include | |
parent | 0234276af848343ba13332de9d3f6dee0a529c0c (diff) | |
download | samba-ca342870639f8720b1becb9b6a5587feafbeec11.tar.gz samba-ca342870639f8720b1becb9b6a5587feafbeec11.tar.bz2 samba-ca342870639f8720b1becb9b6a5587feafbeec11.zip |
Make use of ADD_TO_ARRAY
(This used to be commit 81f334bd6da601a040f754c46705cfa2fd4f8c45)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index bb10487b54..2a954f4efe 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -10485,8 +10485,8 @@ 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_unixids_to_sids(struct id_map **ids); -NTSTATUS idmap_sids_to_unixids(struct id_map **ids); +NTSTATUS idmap_unixids_to_sids(struct id_map **ids, int n_ids); +NTSTATUS idmap_sids_to_unixids(struct id_map **ids, int n_ids); NTSTATUS idmap_set_mapping(const struct id_map *id); char *idmap_fetch_secret(const char *backend, bool alloc, const char *domain, const char *identity); |