mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +02:00
use system(cmd) in DEBUG mode
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1306 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: 8f064b2bbd
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2011-03-16 (Wed, 16 Mar 2011)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -604,8 +604,8 @@ void CNetworkSetup::showCurrentNetworkSettings()
|
||||
else {
|
||||
netGetNameserver(nameserver);
|
||||
netGetDefaultRoute(router);
|
||||
CNetworkConfig networkConfig;
|
||||
std::string dhcp = networkConfig.inet_static ? g_Locale->getText(LOCALE_OPTIONS_OFF) : g_Locale->getText(LOCALE_OPTIONS_ON);
|
||||
CNetworkConfig _networkConfig;
|
||||
std::string dhcp = _networkConfig.inet_static ? g_Locale->getText(LOCALE_OPTIONS_OFF) : g_Locale->getText(LOCALE_OPTIONS_ON);
|
||||
|
||||
text = (std::string)g_Locale->getText(LOCALE_NETWORKMENU_DHCP) + ": " + dhcp + '\n'
|
||||
+ g_Locale->getText(LOCALE_NETWORKMENU_IPADDRESS ) + ": " + ip + '\n'
|
||||
|
@@ -220,9 +220,9 @@ void CNetworkConfig::startNetwork(void)
|
||||
std::string cmd = "/sbin/ifup " + ifname;
|
||||
#ifdef DEBUG
|
||||
printf("CNetworkConfig::startNetwork: %s\n", cmd.c_str());
|
||||
#else
|
||||
system(cmd.c_str());
|
||||
#endif
|
||||
system(cmd.c_str());
|
||||
|
||||
if (!inet_static) {
|
||||
init_vars();
|
||||
}
|
||||
@@ -234,9 +234,9 @@ void CNetworkConfig::stopNetwork(void)
|
||||
std::string cmd = "/sbin/ifdown " + ifname;
|
||||
#ifdef DEBUG
|
||||
printf("CNetworkConfig::stopNetwork: %s\n", cmd.c_str());
|
||||
#else
|
||||
system(cmd.c_str());
|
||||
#endif
|
||||
system(cmd.c_str());
|
||||
|
||||
}
|
||||
|
||||
void CNetworkConfig::readWpaConfig()
|
||||
|
Reference in New Issue
Block a user