diff options
author | Jeremy Allison <jra@samba.org> | 2008-01-05 01:16:09 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-01-05 01:16:09 -0800 |
commit | 3d7a8a9fa14625279bcce03654465a88afe6db86 (patch) | |
tree | a215739cb88fe84f8fa296d2dee51112347fe9d8 | |
parent | af2a75ba61b754f30430df9b271e99d05c2cd1b2 (diff) | |
download | samba-3d7a8a9fa14625279bcce03654465a88afe6db86.tar.gz samba-3d7a8a9fa14625279bcce03654465a88afe6db86.tar.bz2 samba-3d7a8a9fa14625279bcce03654465a88afe6db86.zip |
Fix missing return - should be void.
Jeremy.
(This used to be commit 45ae90b77e53cd0cdf50939528dac4d2ca39b5c5)
-rw-r--r-- | source3/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 81b9fc817b..c69a1450a0 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -364,7 +364,7 @@ void set_cmdline_auth_info_use_krb5_ticket(void) } /* This should only be used by lib/popt_common.c JRA */ -bool set_cmdline_auth_info_smb_encrypt(void) +void set_cmdline_auth_info_smb_encrypt(void) { cmdline_auth_info.smb_encrypt = true; } |