--- smsdaemon/plugins/ListPlugin.cpp 2008/12/01 12:08:23 118 +++ smsdaemon/plugins/ListPlugin.cpp 2008/12/07 15:51:02 142 @@ -20,8 +20,8 @@ std::string reply = "Loaded plugins:\n"; for (it = plugins.begin(); it != plugins.end(); ++it) { - reply += (*it)->GetCommand() + " - " + (*it)->GetDescription() + "\n"; + reply += (*it)->GetCommand() + "\n"; } - modem.SendSms(sms.sender, reply, true); + modem.SendSms(sms.GetSender(), reply, true); }