--- smsdaemon/main.cpp 2008/12/07 20:06:12 146 +++ smsdaemon/main.cpp 2008/12/07 20:58:41 149 @@ -4,7 +4,7 @@ #include "daemon.h" #include "common.h" -#include "GsmModem.h" +#include "ModemTransceiver.h" #include "serialport/SerialPort.h" #include "SmsDaemon.h" #include "ConfigFile.h" @@ -70,7 +70,7 @@ sms_exit(1); } - GsmModem modem(port); + ModemTransceiver modem(port); try { @@ -78,7 +78,7 @@ } catch (std::exception& e) { - cmn->logMessage( string("GsmModem Exception: ") + e.what() ); + cmn->logMessage( string("ModemTransceiver Exception: ") + e.what() ); sms_exit(2); }