From 531b84d4b6dfbd7bbc7611ff174fd6c4251185c7 Mon Sep 17 00:00:00 2001
From: Martin Nilsson <mani@lysator.liu.se>
Date: Sun, 26 Nov 2000 18:31:45 +0100
Subject: [PATCH] Messages and broadcasts are asynchronous.

Rev: lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike:1.24
---
 lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike b/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike
index 303b97aa29..38ca62ce02 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);
-- 
GitLab