From 60dc5d1260b09d195d76f73f987f4a3eabe7d155 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Tue, 24 Nov 1998 18:43:59 +0000 Subject: oops, forgot to rename smbfilegrp to smbunixgrp. (This used to be commit 6de2b03d1c6714d63c6dbe7a417fb442e95ee0d9) --- source3/passdb/smbpassgroupunix.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'source3/passdb') diff --git a/source3/passdb/smbpassgroupunix.c b/source3/passdb/smbpassgroupunix.c index 25e41680be..90f804e8ef 100644 --- a/source3/passdb/smbpassgroupunix.c +++ b/source3/passdb/smbpassgroupunix.c @@ -29,7 +29,7 @@ extern DOM_SID global_member_sid; to ensure no modification outside this module. ****************************************************************/ -static void *startsmbfilegrpent(BOOL update) +static void *startsmbunixgrpent(BOOL update) { return startsmbfilepwent(False); } @@ -38,7 +38,7 @@ static void *startsmbfilegrpent(BOOL update) End enumeration of the smbpasswd list. ****************************************************************/ -static void endsmbfilegrpent(void *vp) +static void endsmbunixgrpent(void *vp) { endsmbfilepwent(vp); } @@ -48,7 +48,7 @@ static void endsmbfilegrpent(void *vp) This must be treated as an opaque token. *************************************************************************/ -static SMB_BIG_UINT getsmbfilegrppos(void *vp) +static SMB_BIG_UINT getsmbunixgrppos(void *vp) { return getsmbfilepwpos(vp); } @@ -58,7 +58,7 @@ static SMB_BIG_UINT getsmbfilegrppos(void *vp) This must be treated as an opaque token. *************************************************************************/ -static BOOL setsmbfilegrppos(void *vp, SMB_BIG_UINT tok) +static BOOL setsmbunixgrppos(void *vp, SMB_BIG_UINT tok) { return setsmbfilepwpos(vp, tok); } @@ -66,7 +66,7 @@ static BOOL setsmbfilegrppos(void *vp, SMB_BIG_UINT tok) /************************************************************************* Routine to return the next smbpassgroup entry *************************************************************************/ -static struct smb_passwd *getsmbfilegrpent(void *vp, +static struct smb_passwd *getsmbunixgrpent(void *vp, uint32 **grp_rids, int *num_grps, uint32 **als_rids, int *num_alss) { @@ -79,7 +79,7 @@ static struct smb_passwd *getsmbfilegrpent(void *vp, if (vp == NULL) { - DEBUG(0,("getsmbfilegrpent: Bad password file pointer.\n")); + DEBUG(0,("getsmbunixgrpent: Bad password file pointer.\n")); return NULL; } @@ -217,14 +217,14 @@ static struct smb_passwd *getsmbfilegrpent(void *vp, static struct passgrp_ops file_ops = { - startsmbfilegrpent, - endsmbfilegrpent, - getsmbfilegrppos, - setsmbfilegrppos, + startsmbunixgrpent, + endsmbunixgrpent, + getsmbunixgrppos, + setsmbunixgrppos, iterate_getsmbgrpnam, /* In passgrp.c */ iterate_getsmbgrpuid, /* In passgrp.c */ iterate_getsmbgrprid, /* In passgrp.c */ - getsmbfilegrpent, + getsmbunixgrpent, }; struct passgrp_ops *unix_initialise_password_grp(void) -- cgit