diff options
author | Gerald Carter <jerry@samba.org> | 2005-09-27 19:18:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:04:47 -0500 |
commit | a1faaa9e67e1370c780acb249764bd2d16f52c78 (patch) | |
tree | 1dc929e83b5f2676fdf95af13098e8b97a02ad17 /source3/client | |
parent | a757c6d57fc5f24951ee00070f9b9471244cef05 (diff) | |
download | samba-a1faaa9e67e1370c780acb249764bd2d16f52c78.tar.gz samba-a1faaa9e67e1370c780acb249764bd2d16f52c78.tar.bz2 samba-a1faaa9e67e1370c780acb249764bd2d16f52c78.zip |
r10554: * BUG 3057: assume x64 drivers are v3 drivers
* BUG 3087: allow smbspool to establisha geust connection
using a username with no password
(This used to be commit 39369c8041e0633e88c30e0c62530c2393ef80f6)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/smbspool.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/client/smbspool.c b/source3/client/smbspool.c index 5d27fbe4c2..1a3ac06c78 100644 --- a/source3/client/smbspool.c +++ b/source3/client/smbspool.c @@ -457,15 +457,15 @@ smb_connect(const char *workgroup, /* I - Workgroup */ get_myname(myname); - if ( (username) && ( *username ) && (password) && (*password) ) + /* See if we have a username first. This is for backwards compatible + behavior with 3.0.14a */ + + if ( username && *username ) { - /* - * User/password specified in the DEVICE_URI, use those credentials - * to connect to the server - */ cli = smb_complete_connection(myname, server, port, username, password, workgroup, share, 0 ); - if (cli ) { return cli; } + if (cli) + return cli; } /* |