-rw-r--r-- | noncore/net/opie-smb/qsmb.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/net/opie-smb/qsmb.cpp b/noncore/net/opie-smb/qsmb.cpp index a219c58..422b9f3 100644 --- a/noncore/net/opie-smb/qsmb.cpp +++ b/noncore/net/opie-smb/qsmb.cpp | |||
@@ -165,13 +165,14 @@ void Qsmb::hostSelected(int index) | |||
165 | 165 | ||
166 | ccmd << "/usr/bin/smbclient"; | 166 | ccmd << "/usr/bin/smbclient"; |
167 | ccmd << "-L"; | 167 | ccmd << "-L"; |
168 | ccmd << CBHost->currentText(); | 168 | ccmd << CBHost->currentText(); |
169 | ccmd << "-N"; | 169 | ccmd << "-N"; |
170 | 170 | ||
171 | if(!username->text().isEmpty()) { | 171 | if(username->text().isEmpty()) { |
172 | //do nothing | ||
172 | } else { | 173 | } else { |
173 | ccmd << "-U"; | 174 | ccmd << "-U"; |
174 | ccmd << username->text()+"\%"+ password->text(); | 175 | ccmd << username->text()+"\%"+ password->text(); |
175 | } | 176 | } |
176 | runCommand(ccmd); | 177 | runCommand(ccmd); |
177 | QTextStream s(&out, IO_ReadOnly); | 178 | QTextStream s(&out, IO_ReadOnly); |