|
From: Crossfire C. r. messages.
<cro...@li...> - 2018-11-19 00:53:02
|
Revision: 20609
http://sourceforge.net/p/crossfire/code/20609
Author: partmedia
Date: 2018-11-19 00:52:57 +0000 (Mon, 19 Nov 2018)
Log Message:
-----------
Wrap error around LOG()
Modified Paths:
--------------
client/trunk/common/client.c
Modified: client/trunk/common/client.c
===================================================================
--- client/trunk/common/client.c 2018-10-29 00:32:04 UTC (rev 20608)
+++ client/trunk/common/client.c 2018-11-19 00:52:57 UTC (rev 20609)
@@ -249,7 +249,7 @@
* server does not send commands the client does not support.
*/
if (i == NCOMMANDS) {
- printf("Unrecognized command from server (%s)\n",
+ LOG(LOG_ERROR, "client_run", "Unrecognized command from server (%s)\n",
inbuf.buf+2);
}
g_free(inbuf.buf);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|