summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/daemon
authormax <max>2002-11-23 21:20:13 (UTC)
committer max <max>2002-11-23 21:20:13 (UTC)
commit4e24ece4607d3b2f9e3252fa561fabaa9cdddd63 (patch) (side-by-side diff)
tree96d3f4b07d3e352307f8f46eadf584156cfee86d /noncore/net/wellenreiter/daemon
parent33320c654a5a7627dfa1a31d9b3a78fd8c03d363 (diff)
downloadopie-4e24ece4607d3b2f9e3252fa561fabaa9cdddd63.zip
opie-4e24ece4607d3b2f9e3252fa561fabaa9cdddd63.tar.gz
opie-4e24ece4607d3b2f9e3252fa561fabaa9cdddd63.tar.bz2
*** empty log message ***
Diffstat (limited to 'noncore/net/wellenreiter/daemon') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/daemon/source/cardmode.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/net/wellenreiter/daemon/source/cardmode.cc b/noncore/net/wellenreiter/daemon/source/cardmode.cc
index ae32af4..f84ce23 100644
--- a/noncore/net/wellenreiter/daemon/source/cardmode.cc
+++ b/noncore/net/wellenreiter/daemon/source/cardmode.cc
@@ -41,8 +41,8 @@ int card_into_monitormode (char *device, int cardtype)
snprintf(wlanngcmd, sizeof(wlanngcmd),"%s %s lnxreq_wlansniff channel=1 enable=true",WLANCTL_PATH,device);
if (system (wlanngcmd) != 0)
{
- printf ("\n Fatal error could not set %s in raw mode, check cardtype\n",device);
- return 0;
+ printf ("\n Fatal error could not set %s in raw mode, check cardtype\n\n\tterminating now...\n\n",device);
+ exit(1);
}
}
else if (cardtype == CARD_TYPE_HOSTAP)
@@ -66,9 +66,9 @@ int card_into_monitormode (char *device, int cardtype)
}
else
{
- printf ("Fatal error, cannot continue, your interface %s does not work in the correct 802.11 raw mode, check you driver please\n",device);
+ printf ("Fatal error, cannot continue, your interface %s does not work in the correct 802.11 raw mode, check you driver please\n\tterminating now",device);
pcap_close(handle);
- return 0;
+ exit(1);
}
}