-rw-r--r-- | noncore/net/wellenreiter/daemon/source/cardmode.cc | 8 |
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 @@ -42,6 +42,6 @@ int card_into_monitormode (char *device, int cardtype) 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); } } @@ -67,7 +67,7 @@ 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); } } |