From 39c2aae6b7aa87dafe4ed42ecab530bc082bd314 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Fri, 30 Oct 2009 20:02:40 -0700 Subject: [PATCH] use xtell instead of tell in wchat --- winboard/wchat.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/winboard/wchat.c b/winboard/wchat.c index db9ebf1..a2b0825 100644 --- a/winboard/wchat.c +++ b/winboard/wchat.c @@ -181,7 +181,7 @@ LRESULT CALLBACK ChatProc( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam sprintf(buf, "> %s\n", mess); // echo only tells to handle, not channel InsertIntoMemo(hDlg, buf); } - sprintf(buf, "tell %s %s\n", chatPartner[partner], mess); + sprintf(buf, "xtell %s %s\n", chatPartner[partner], mess); } SendToICS(buf); break; -- 1.7.0.4