From 5f159ca2bec501050e3f234c802f1e8e51b937c6 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Fri, 6 Jul 2012 09:45:41 +0200 Subject: [PATCH] Recognize 'result' command in WB driver Currently a no-op, but just to suppress Unknown Command errors. --- hachu.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hachu.c b/hachu.c index 07398be..c59149b 100644 --- a/hachu.c +++ b/hachu.c @@ -1848,6 +1848,7 @@ printf("in: %s\n", command); if(!strcmp(command, "ics")) { continue; } if(!strcmp(command, "accepted")){ continue; } if(!strcmp(command, "rejected")){ continue; } + if(!strcmp(command, "result")) { continue; } if(!strcmp(command, "hover")) { continue; } if(!strcmp(command, "")) { continue; } if(!strcmp(command, "usermove")){ -- 1.7.0.4