diff options
author | Simo Sorce <idra@samba.org> | 2011-09-26 17:55:47 -0400 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-10-12 19:28:12 +0200 |
commit | 995d1567265be178b4e45f79ea4562a7041ffa52 (patch) | |
tree | 97eed8a77f5332f0aa73109454037e6f87250cdb /source3/include | |
parent | fc320551d84508371ab1c082752515d538648f49 (diff) | |
download | samba-995d1567265be178b4e45f79ea4562a7041ffa52.tar.gz samba-995d1567265be178b4e45f79ea4562a7041ffa52.tar.bz2 samba-995d1567265be178b4e45f79ea4562a7041ffa52.zip |
s3-group-mapping: Remove fstrings from GROUP_MAP.
Signed-off-by: Andreas Schneider <asn@samba.org>
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Wed Oct 12 19:28:12 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/mapping.h | 4 | ||||
-rw-r--r-- | source3/include/passdb.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/mapping.h b/source3/include/mapping.h index 7454d19af8..41275ff7ed 100644 --- a/source3/include/mapping.h +++ b/source3/include/mapping.h @@ -26,8 +26,8 @@ typedef struct _GROUP_MAP { gid_t gid; struct dom_sid sid; enum lsa_SidType sid_name_use; - fstring nt_name; - fstring comment; + char *nt_name; + char *comment; } GROUP_MAP; #include "groupdb/proto.h" diff --git a/source3/include/passdb.h b/source3/include/passdb.h index ea53279d42..59eedd8563 100644 --- a/source3/include/passdb.h +++ b/source3/include/passdb.h @@ -375,7 +375,7 @@ struct pdb_methods NTSTATUS (*enum_group_mapping)(struct pdb_methods *methods, const struct dom_sid *sid, enum lsa_SidType sid_name_use, - GROUP_MAP **pp_rmap, size_t *p_num_entries, + GROUP_MAP ***pp_rmap, size_t *p_num_entries, bool unix_only); NTSTATUS (*enum_group_members)(struct pdb_methods *methods, |