-rw-r--r-- | noncore/net/opie-smb/qsmb.cpp | 2 |
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 | |||
@@ -147,49 +147,49 @@ void Qsmb::scan() | |||
147 | scanning = false; | 147 | scanning = false; |
148 | } | 148 | } |
149 | 149 | ||
150 | void Qsmb::hostSelected(int index) | 150 | void Qsmb::hostSelected(int index) |
151 | { | 151 | { |
152 | owarn << "hostSelected" << oendl; | 152 | owarn << "hostSelected" << oendl; |
153 | QListViewItem *element; | 153 | QListViewItem *element; |
154 | QListViewItem *parent; | 154 | QListViewItem *parent; |
155 | 155 | ||
156 | QString text = CBHost->currentText(); | 156 | QString text = CBHost->currentText(); |
157 | 157 | ||
158 | if (scanning) return; | 158 | if (scanning) return; |
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 | ||
184 | if( tmp.find("$") == -1 && tmp.find("Disk") != -1) { | 184 | if( tmp.find("$") == -1 && tmp.find("Disk") != -1) { |
185 | QStringList token = QStringList::split(' ', tmp ); | 185 | QStringList token = QStringList::split(' ', tmp ); |
186 | share = token[0]; | 186 | share = token[0]; |
187 | comment = token[2]; | 187 | comment = token[2]; |
188 | element = new QListViewItem(ListViewScan,share, comment); | 188 | element = new QListViewItem(ListViewScan,share, comment); |
189 | element->setOpen(true); | 189 | element->setOpen(true); |
190 | // top_element = element; | 190 | // top_element = element; |
191 | // parent = element; | 191 | // parent = element; |
192 | } | 192 | } |
193 | 193 | ||
194 | } | 194 | } |
195 | // owarn << "i="<< index << "cmd:" << cmd << oendl; | 195 | // owarn << "i="<< index << "cmd:" << cmd << oendl; |