summaryrefslogtreecommitdiff
path: root/source3/passdb
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-11-24 18:43:59 +0000
committerLuke Leighton <lkcl@samba.org>1998-11-24 18:43:59 +0000
commit60dc5d1260b09d195d76f73f987f4a3eabe7d155 (patch)
tree85e4b73f542a2f05b2e67820821df46d8c7e3505 /source3/passdb
parenta2e3532bf31510c21796bf178d603f22150be022 (diff)
downloadsamba-60dc5d1260b09d195d76f73f987f4a3eabe7d155.tar.gz
samba-60dc5d1260b09d195d76f73f987f4a3eabe7d155.tar.bz2
samba-60dc5d1260b09d195d76f73f987f4a3eabe7d155.zip
oops, forgot to rename smbfilegrp to smbunixgrp.
(This used to be commit 6de2b03d1c6714d63c6dbe7a417fb442e95ee0d9)
Diffstat (limited to 'source3/passdb')
-rw-r--r--source3/passdb/smbpassgroupunix.c22
1 files changed, 11 insertions, 11 deletions
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)