diff options
author | Tim Potter <tpot@samba.org> | 2001-11-30 00:46:40 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-11-30 00:46:40 +0000 |
commit | b35d90cd89849f0a01e8c79f0962ec9388673ad1 (patch) | |
tree | bab462f581f52e85f464f9160301bf627909a8dc /source/groupdb/mapping.c | |
parent | 518084a70d0b20347411535f1dcf7453981499cf (diff) | |
download | samba-b35d90cd89849f0a01e8c79f0962ec9388673ad1.tar.gz samba-b35d90cd89849f0a01e8c79f0962ec9388673ad1.tar.xz samba-b35d90cd89849f0a01e8c79f0962ec9388673ad1.zip |
Missing return in free_privilege()
Diffstat (limited to 'source/groupdb/mapping.c')
-rw-r--r-- | source/groupdb/mapping.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/groupdb/mapping.c b/source/groupdb/mapping.c index 21c9564bd06..3e3ee1b3290 100644 --- a/source/groupdb/mapping.c +++ b/source/groupdb/mapping.c @@ -260,6 +260,8 @@ BOOL free_privilege(PRIVILEGE_SET *priv_set) priv_set->count=0; priv_set->control=0; priv_set->set=NULL; + + return True; } /**************************************************************************** |