diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-20 00:56:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:00:49 -0500 |
commit | f21e9f578069490f047ff919d26268cc5a39cfc5 (patch) | |
tree | 9c2992a9bd1312fa94677a1d5c2be2a9d69b4709 | |
parent | a3e1f7e44d2d6a5ef801badc189b3dcf19dc72d9 (diff) | |
download | samba-f21e9f578069490f047ff919d26268cc5a39cfc5.tar.gz samba-f21e9f578069490f047ff919d26268cc5a39cfc5.tar.bz2 samba-f21e9f578069490f047ff919d26268cc5a39cfc5.zip |
r18705: not all compilers like this
metze
(This used to be commit 2ec4bc0f5299f295525f306279ddb136e0b19ee1)
-rw-r--r-- | source3/lib/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 2391566e6c..d4042044fb 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -3031,10 +3031,10 @@ static void smb_nscd_flush_cache(const char *service) void smb_nscd_flush_user_cache(void) { - return smb_nscd_flush_cache("passwd"); + smb_nscd_flush_cache("passwd"); } void smb_nscd_flush_group_cache(void) { - return smb_nscd_flush_cache("group"); + smb_nscd_flush_cache("group"); } |