summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp
authorbenmeyer <benmeyer>2002-10-29 15:59:44 (UTC)
committer benmeyer <benmeyer>2002-10-29 15:59:44 (UTC)
commit5ca0a08f9f27391370b291df28b3de71db3bb175 (patch) (side-by-side diff)
treef0730ad64e0dfc84494cc86813a40854b504ee12 /noncore/settings/networksettings/interfaces/interfacesetupimp.cpp
parentbad66a2ea2aea8bec1c7895b0e1a461e2f4859c2 (diff)
downloadopie-5ca0a08f9f27391370b291df28b3de71db3bb175.zip
opie-5ca0a08f9f27391370b291df28b3de71db3bb175.tar.gz
opie-5ca0a08f9f27391370b291df28b3de71db3bb175.tar.bz2
Added changedns
Diffstat (limited to 'noncore/settings/networksettings/interfaces/interfacesetupimp.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/interfaces/interfacesetupimp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp b/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp
index e717d6f..97c05cc 100644
--- a/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp
+++ b/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp
@@ -14,7 +14,7 @@
#include <assert.h>
-#define DNSSCRIPT "interfacednsscript"
+#define DNSSCRIPT "changedns"
/**
* Constuctor. Set up the connection and load the first profile.
@@ -76,8 +76,8 @@ bool InterfaceSetupImp::saveSettings(){
interfaces->setInterfaceOption("netmask", subnetMaskEdit->text());
interfaces->setInterfaceOption("gateway", gatewayEdit->text());
QString dns = firstDNSLineEdit->text() + " " + secondDNSLineEdit->text();
- interfaces->setInterfaceOption("up "DNSSCRIPT" add ", dns);
- interfaces->setInterfaceOption("down "DNSSCRIPT" remove ", dns);
+ interfaces->setInterfaceOption("up "DNSSCRIPT" -a ", dns);
+ interfaces->setInterfaceOption("down "DNSSCRIPT" -r ", dns);
}
// IP Information
@@ -133,7 +133,7 @@ void InterfaceSetupImp::setProfile(const QString &profile){
// IP Information
autoStart->setChecked(interfaces->isAuto(interface->getInterfaceName()));
- QString dns = interfaces->getInterfaceOption("up interfacednsscript add", error);
+ QString dns = interfaces->getInterfaceOption("up interfacednsscript -a", error);
if(dns.contains(" ")){
firstDNSLineEdit->setText(dns.mid(0, dns.find(" ")));
secondDNSLineEdit->setText(dns.mid(dns.find(" ")+1, dns.length()));