From: H.G. Muller Date: Sat, 31 Oct 2009 03:02:40 +0000 (-0700) Subject: use xtell instead of tell in wchat X-Git-Tag: v4.4.1~2 X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=commitdiff_plain;h=39c2aae6b7aa87dafe4ed42ecab530bc082bd314 use xtell instead of tell in wchat --- 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;