diff options
author | Jeremy Allison <jra@samba.org> | 2001-06-12 01:49:36 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-06-12 01:49:36 +0000 |
commit | a56c4b37213bcb7694c2842acd034eaa4810e249 (patch) | |
tree | 66461dc239541e51232291a3d028baf848a3c74c /source/lib/util_getent.c | |
parent | 5008ac0eb7a98db5a6521fae1d93160608ae445a (diff) | |
download | samba-a56c4b37213bcb7694c2842acd034eaa4810e249.tar.gz samba-a56c4b37213bcb7694c2842acd034eaa4810e249.tar.xz samba-a56c4b37213bcb7694c2842acd034eaa4810e249.zip |
lib/util_getent.c: removed debug code.
smbd/posix_acls.c: Attempt to fix the "lose default acl" problem in Solaris.
Needs testing.
Jeremy.
Diffstat (limited to 'source/lib/util_getent.c')
-rw-r--r-- | source/lib/util_getent.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/source/lib/util_getent.c b/source/lib/util_getent.c index 610d31f0d5b..5c1652f6bf5 100644 --- a/source/lib/util_getent.c +++ b/source/lib/util_getent.c @@ -21,6 +21,7 @@ #include "includes.h" +#if 0 static void print_grent_list(struct sys_grent *glist) { DEBUG(100, ("print_grent_list: %x\n", glist )); @@ -40,6 +41,7 @@ static void print_grent_list(struct sys_grent *glist) } DEBUG(100,("FINISHED !\n\n")); } +#endif /**************************************************************** Returns a single linked list of group entries. @@ -108,8 +110,6 @@ struct sys_grent * getgrent_list(void) } endgrent(); - print_grent_list(glist); - DEBUG(100,("getgrent_list returned %x\n", glist )); return glist; err: @@ -127,12 +127,9 @@ struct sys_grent * getgrent_list(void) void grent_free (struct sys_grent *glist) { - DEBUG(100,("getgrent_free %x\n", glist )); while (glist) { struct sys_grent *prev; - print_grent_list(glist); - if (glist->gr_name) free(glist->gr_name); if (glist->gr_passwd) |