summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_group.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-23 12:38:35 +0200
committerVolker Lendecke <vl@samba.org>2009-08-29 10:44:12 +0200
commitffd9d41be93984b6a139818184716e709fbfa1ef (patch)
treecbda033406c331e14dc2de0d2aed91b4886edf84 /source3/winbindd/winbindd_group.c
parent23abcd2318c69753aa2a144e1dc0f9cf9efdb705 (diff)
downloadsamba-ffd9d41be93984b6a139818184716e709fbfa1ef.tar.gz
samba-ffd9d41be93984b6a139818184716e709fbfa1ef.tar.bz2
samba-ffd9d41be93984b6a139818184716e709fbfa1ef.zip
s3:winbind: Rename wbint_GroupMember to wbint_Principal
Diffstat (limited to 'source3/winbindd/winbindd_group.c')
-rw-r--r--source3/winbindd/winbindd_group.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/winbindd/winbindd_group.c b/source3/winbindd/winbindd_group.c
index 16defc793d..e914f0e753 100644
--- a/source3/winbindd/winbindd_group.c
+++ b/source3/winbindd/winbindd_group.c
@@ -1391,8 +1391,8 @@ struct getgr_countmem {
static int getgr_calc_memberlen(DATA_BLOB key, void *data, void *priv)
{
- struct wbint_GroupMember *m = talloc_get_type_abort(
- data, struct wbint_GroupMember);
+ struct wbint_Principal *m = talloc_get_type_abort(
+ data, struct wbint_Principal);
struct getgr_countmem *buf = (struct getgr_countmem *)priv;
buf->num += 1;
@@ -1407,8 +1407,8 @@ struct getgr_stringmem {
static int getgr_unparse_members(DATA_BLOB key, void *data, void *priv)
{
- struct wbint_GroupMember *m = talloc_get_type_abort(
- data, struct wbint_GroupMember);
+ struct wbint_Principal *m = talloc_get_type_abort(
+ data, struct wbint_Principal);
struct getgr_stringmem *buf = (struct getgr_stringmem *)priv;
int len;