summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2005-08-16 05:47:24 (UTC)
committer llornkcor <llornkcor>2005-08-16 05:47:24 (UTC)
commit373b2f0bdc2be62c6e275c74488a8921d03fc299 (patch) (unidiff)
treedc8672545848790bcbd7f79eae926f3a8a1d887f /noncore
parentcc86b6f84f753f80f40537cdc4418016ab75373e (diff)
downloadopie-373b2f0bdc2be62c6e275c74488a8921d03fc299.zip
opie-373b2f0bdc2be62c6e275c74488a8921d03fc299.tar.gz
opie-373b2f0bdc2be62c6e275c74488a8921d03fc299.tar.bz2
clarify do nothing
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opie-smb/qsmb.cpp3
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
@@ -159,25 +159,26 @@ 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 //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);
178 179
179 while ( !s.atEnd() ) { 180 while ( !s.atEnd() ) {
180 QString share; 181 QString share;
181 QString comment; 182 QString comment;
182 QString tmp = s.readLine(); 183 QString tmp = s.readLine();
183 184