summaryrefslogtreecommitdiff
path: root/noncore/net/opie-smb/qsmb.cpp
authorllornkcor <llornkcor>2005-08-15 19:23:59 (UTC)
committer llornkcor <llornkcor>2005-08-15 19:23:59 (UTC)
commit50074192b3a44030b1a83ce824c148a79d60707f (patch) (unidiff)
treedfdcd860c43200240de4b281fd0714fdbfefce04 /noncore/net/opie-smb/qsmb.cpp
parent0771d689056f233fe772d85de4040f59f3ba1e6b (diff)
downloadopie-50074192b3a44030b1a83ce824c148a79d60707f.zip
opie-50074192b3a44030b1a83ce824c148a79d60707f.tar.gz
opie-50074192b3a44030b1a83ce824c148a79d60707f.tar.bz2
fix use/pass
Diffstat (limited to 'noncore/net/opie-smb/qsmb.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opie-smb/qsmb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/opie-smb/qsmb.cpp b/noncore/net/opie-smb/qsmb.cpp
index fbe1c5c..a219c58 100644
--- a/noncore/net/opie-smb/qsmb.cpp
+++ b/noncore/net/opie-smb/qsmb.cpp
@@ -159,25 +159,25 @@ void Qsmb::hostSelected(int index)
159 scanning = true; 159 scanning = true;
160 160
161 QString cmd; 161 QString cmd;
162 QStringList ccmd; 162 QStringList ccmd;
163 163
164 LScan->setText("Scanning..."); 164 LScan->setText("Scanning...");
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 } else { 172 } else {
173 ccmd << "-U"; 173 ccmd << "-U";
174 ccmd << username->text()+"\%"+ password->text(); 174 ccmd << username->text()+"\%"+ password->text();
175 } 175 }
176 runCommand(ccmd); 176 runCommand(ccmd);
177 QTextStream s(&out, IO_ReadOnly); 177 QTextStream s(&out, IO_ReadOnly);
178 178
179 while ( !s.atEnd() ) { 179 while ( !s.atEnd() ) {
180 QString share; 180 QString share;
181 QString comment; 181 QString comment;
182 QString tmp = s.readLine(); 182 QString tmp = s.readLine();
183 183