diff options
author | Volker Lendecke <vlendec@samba.org> | 2004-11-18 15:52:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:21 -0500 |
commit | 36913aa038d8a56866a87d46741ee793189384e9 (patch) | |
tree | 7f88b9ab0126603453a5b219180564cc2797fafb /source3 | |
parent | fd6790641707a4c9e1ddfb1b422257835974a730 (diff) | |
download | samba-36913aa038d8a56866a87d46741ee793189384e9.tar.gz samba-36913aa038d8a56866a87d46741ee793189384e9.tar.bz2 samba-36913aa038d8a56866a87d46741ee793189384e9.zip |
r3852: Fix the build...
(This used to be commit 3bd72b864f18f6fad0357c8aa632121f14e422ab)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/util_sam_sid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/util_sam_sid.c b/source3/passdb/util_sam_sid.c index 204f68c121..7bc6da94c0 100644 --- a/source3/passdb/util_sam_sid.c +++ b/source3/passdb/util_sam_sid.c @@ -338,5 +338,5 @@ void add_sid_to_array_unique(const DOM_SID *sid, DOM_SID **sids, int *num_sids) return; } - return add_sid_to_array(sid, sids, num_sids); + add_sid_to_array(sid, sids, num_sids); } |