summaryrefslogtreecommitdiff
path: root/noncore/net/opie-smb
authorllornkcor <llornkcor>2005-08-15 19:23:59 (UTC)
committer llornkcor <llornkcor>2005-08-15 19:23:59 (UTC)
commit50074192b3a44030b1a83ce824c148a79d60707f (patch) (side-by-side diff)
treedfdcd860c43200240de4b281fd0714fdbfefce04 /noncore/net/opie-smb
parent0771d689056f233fe772d85de4040f59f3ba1e6b (diff)
downloadopie-50074192b3a44030b1a83ce824c148a79d60707f.zip
opie-50074192b3a44030b1a83ce824c148a79d60707f.tar.gz
opie-50074192b3a44030b1a83ce824c148a79d60707f.tar.bz2
fix use/pass
Diffstat (limited to 'noncore/net/opie-smb') (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
@@ -147,49 +147,49 @@ void Qsmb::scan()
scanning = false;
}
void Qsmb::hostSelected(int index)
{
owarn << "hostSelected" << oendl;
QListViewItem *element;
QListViewItem *parent;
QString text = CBHost->currentText();
if (scanning) return;
scanning = true;
QString cmd;
QStringList ccmd;
LScan->setText("Scanning...");
ccmd << "/usr/bin/smbclient";
ccmd << "-L";
ccmd << CBHost->currentText();
ccmd << "-N";
- if(username->text().isEmpty()) {
+ if(!username->text().isEmpty()) {
} else {
ccmd << "-U";
ccmd << username->text()+"\%"+ password->text();
}
runCommand(ccmd);
QTextStream s(&out, IO_ReadOnly);
while ( !s.atEnd() ) {
QString share;
QString comment;
QString tmp = s.readLine();
if( tmp.find("$") == -1 && tmp.find("Disk") != -1) {
QStringList token = QStringList::split(' ', tmp );
share = token[0];
comment = token[2];
element = new QListViewItem(ListViewScan,share, comment);
element->setOpen(true);
// top_element = element;
// parent = element;
}
}
// owarn << "i="<< index << "cmd:" << cmd << oendl;