diff --git a/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike b/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike index 303b97aa29418c22b295d7e2bcd0f5ae9e627e76..38ca62ce021d6cd4f7ea5c995e1c15cddebcf17c 100644 --- a/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike +++ b/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike @@ -1,6 +1,6 @@ #pike __REAL_VERSION__ -// $Id: Session.pike,v 1.23 2000/11/11 03:45:34 jhs Exp $ +// $Id: Session.pike,v 1.24 2000/11/26 17:31:45 nilsson Exp $ //! module Protocols //! submodule LysKOM //! class Session @@ -1120,9 +1120,9 @@ object|void send_message(string textstring, mapping options) if(!options) options = ([]); if(!options->recpt) - res = con["broadcast"](textstring); + res = con["async_broadcast"](textstring); else - res = con["send_message"](options->recpt->no, textstring); + res = con["async_send_message"](options->recpt->no, textstring); if (objectp(res)) return res; return text(res);