summaryrefslogtreecommitdiffstats
path: root/source/groupdb/groupfile.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-11-17 20:50:07 +0000
committerJeremy Allison <jra@samba.org>1998-11-17 20:50:07 +0000
commit18ff93a9abbf68ee8c59c0af3e57c63e4a015dac (patch)
tree4ac25cab78948bd6a334a552d884869443d2d8c2 /source/groupdb/groupfile.c
parent2a98135bbc759ab334d76cce98ea673871445db1 (diff)
downloadsamba-18ff93a9abbf68ee8c59c0af3e57c63e4a015dac.tar.gz
samba-18ff93a9abbf68ee8c59c0af3e57c63e4a015dac.tar.xz
samba-18ff93a9abbf68ee8c59c0af3e57c63e4a015dac.zip
Added the same open()/fopen()/creat()/mmap() -> sys_XXX calls.
Tidied up some of the mess (no other word for it). Still doesn't compile cleanly. There are calls with incorrect parameters that don't seem to be doing the right thing. This code still needs surgery :-(. Jeremy.
Diffstat (limited to 'source/groupdb/groupfile.c')
-rw-r--r--source/groupdb/groupfile.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/groupdb/groupfile.c b/source/groupdb/groupfile.c
index 8044071391f..09939de71e0 100644
--- a/source/groupdb/groupfile.c
+++ b/source/groupdb/groupfile.c
@@ -135,7 +135,7 @@ static char *get_group_members(char *p, int *num_mem, DOMAIN_GRP_MEMBER **member
uint8 type;
BOOL found = False;
- if (isdigit(name))
+ if (isdigit(name[0]))
{
uint32 rid = get_number(name);
sid_copy(&sid, &global_sam_sid);
@@ -180,14 +180,13 @@ static DOMAIN_GRP *getgrpfilepwent(void *vp, DOMAIN_GRP_MEMBER **mem, int *num_m
pstring linebuf;
char *p;
- size_t linebuf_len;
gpdb_init_grp(&gp_buf);
/*
* Scan the file, a line at a time and check if the name matches.
*/
- while ((linebuf_len = getfileline(vp, linebuf, sizeof(linebuf))) > 0)
+ while (getfileline(vp, linebuf, sizeof(linebuf)) > 0)
{
/* get group name */