--- smsdaemon/plugins/ShellExecPlugin.cpp 2008/06/10 17:09:33 37 +++ smsdaemon/plugins/ShellExecPlugin.cpp 2008/06/10 20:25:15 38 @@ -12,7 +12,7 @@ void ShellExecPlugin::Execute(GsmModem& modem, SMS& sms) { std::string parameters = GetSmsData(sms); - Util::str_clean(¶meters,";"); + parameters = Util::str_replace(parameters,";"); std::string command = _exeCommand + " " + parameters; int retval = ::system( command.c_str() );