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 | 0d5f30fe5f8f37f1673a5adc9e6ce375a969016c (patch) | |
tree | 4fe469e24375fcbf398d960ff8b1ea0d8e31af7d /source3/groupdb | |
parent | ed7feb560be9b3ad738d1f3226b87692bc67c7e0 (diff) | |
download | samba-0d5f30fe5f8f37f1673a5adc9e6ce375a969016c.tar.gz samba-0d5f30fe5f8f37f1673a5adc9e6ce375a969016c.tar.bz2 samba-0d5f30fe5f8f37f1673a5adc9e6ce375a969016c.zip |
Missing return in free_privilege()
(This used to be commit b35d90cd89849f0a01e8c79f0962ec9388673ad1)
Diffstat (limited to 'source3/groupdb')
-rw-r--r-- | source3/groupdb/mapping.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/groupdb/mapping.c b/source3/groupdb/mapping.c index 21c9564bd0..3e3ee1b329 100644 --- a/source3/groupdb/mapping.c +++ b/source3/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; } /**************************************************************************** |