diff options
author | Tim Potter <tpot@samba.org> | 2001-10-12 06:09:39 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-10-12 06:09:39 +0000 |
commit | 2f7ce531ada2b7c7d09ab6a976b53ce40e6135be (patch) | |
tree | 855722453ad9c5aaefacafa286d8aa812c308425 /source3/smbd/uid.c | |
parent | 3bf08879c9a61ec61304d7ee942043895727ffba (diff) | |
download | samba-2f7ce531ada2b7c7d09ab6a976b53ce40e6135be.tar.gz samba-2f7ce531ada2b7c7d09ab6a976b53ce40e6135be.tar.xz samba-2f7ce531ada2b7c7d09ab6a976b53ce40e6135be.zip |
fixed compiler warning.
(This used to be commit 2d5b0f7ad865f92668954f87fd3b116a7abffa10)
Diffstat (limited to 'source3/smbd/uid.c')
-rw-r--r-- | source3/smbd/uid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c index 45ae31da2aa..39bdaaa5960 100644 --- a/source3/smbd/uid.c +++ b/source3/smbd/uid.c @@ -280,7 +280,7 @@ BOOL lookup_name(const char *name, DOM_SID *psid, enum SID_NAME_USE *name_type) *name_type = SID_NAME_UNKNOWN; if (!winbind_lookup_name(name, psid, name_type) || (*name_type != SID_NAME_USER) ) { - BOOL ret; + BOOL ret = False; DEBUG(10, ("lookup_name: winbind lookup for %s failed - trying local\n", name)); |