author | llornkcor <llornkcor> | 2005-08-14 21:45:59 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2005-08-14 21:45:59 (UTC) |
commit | 1dc2675c1bf557ba0032781535faf033809bae48 (patch) (side-by-side diff) | |
tree | a949c816bc2fcc3213b38f4b5aed54254f7bd7c0 | |
parent | ab6f37a50ef2a0d95f25eff4a749bfcf39057d65 (diff) | |
download | opie-1dc2675c1bf557ba0032781535faf033809bae48.zip opie-1dc2675c1bf557ba0032781535faf033809bae48.tar.gz opie-1dc2675c1bf557ba0032781535faf033809bae48.tar.bz2 |
use shell script smbfind and not perl script findsmb
-rw-r--r-- | noncore/net/opie-smb/opie-smb.control | 2 | ||||
-rw-r--r-- | noncore/net/opie-smb/qsmb.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/opie-smb/opie-smb.control b/noncore/net/opie-smb/opie-smb.control index 98a23b4..fc8c316 100644 --- a/noncore/net/opie-smb/opie-smb.control +++ b/noncore/net/opie-smb/opie-smb.control @@ -1,11 +1,11 @@ Package: opie-smb -Files: plugins/application/libopie-smb.so* bin/opie-smb pics/opie-smb apps/Applications/opie-smb.desktop +Files: plugins/application/libopie-smb.so* bin/opie-smb bin/smbfind pics/opie-smb apps/Applications/opie-smb.desktop Version: $QPE_VERSION$EXTRAVERSION Architecture: arm Arch: arm Maintainer: Kurt Korbatits (support@midget.net.au) Section: Network Priority: optional Description: Gui front end for samba utilities. Source: Depends: smbclient diff --git a/noncore/net/opie-smb/qsmb.cpp b/noncore/net/opie-smb/qsmb.cpp index 527ab38..880573b 100644 --- a/noncore/net/opie-smb/qsmb.cpp +++ b/noncore/net/opie-smb/qsmb.cpp @@ -113,25 +113,25 @@ void Qsmb::scan() if ((pipe = popen(cmd.latin1(), "r")) == NULL) { snprintf(result, 256, "Error: Can't run %s", cmd.latin1()); TextViewOutput->append(result); return; } while(fgets(result, 256, pipe) != NULL) { strcpy( match, result); match[5]='\0'; break; } owarn << "match: " << match << oendl; - cmd = "/usr/bin/findsmb"; + cmd = "smbfind"; owarn <<"cmd: " << cmd << oendl; TextViewOutput->append(cmd); snprintf(lmhosts, 512, "echo '127.0.0.1 localhost'>/etc/samba/lmhosts"); if ((pipe2 = popen(lmhosts, "r")) == NULL) { snprintf(result, 256, "Error: Can't run %s", lmhosts); //TextViewOutput->append(result); return; } |