blob: 1bb4ddf7b4a112248aff7917542afc2ddbb54efe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- kioslave/smb/kio_smb_auth.cpp 24 Jun 2004 19:27:36 -0000 1.27
+++ kioslave/smb/kio_smb_auth.cpp 22 Nov 2004 11:20:21 -0000 1.28
@@ -137,13 +137,11 @@ bool SMBSlave::checkPassword(SMBUrl &url
.arg( share );
info.username = url.user();
- info.password = url.pass();
kdDebug(KIO_SMB) << "call openPassDlg for " << info.url << endl;
if ( openPassDlg(info) ) {
kdDebug(KIO_SMB) << "openPassDlg returned " << info.username << endl;
url.setUser(info.username);
- url.setPass(info.password);
return true;
}
kdDebug(KIO_SMB) << "no value from openPassDlg\n";
|