X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/baaccf85fc7ff0b65ca062faffc5091f0a0acc62..ec7109f36e878732d30e592279c2b160b28e6955:/disobedience/client.c diff --git a/disobedience/client.c b/disobedience/client.c index a8d33a9..80aef88 100644 --- a/disobedience/client.c +++ b/disobedience/client.c @@ -68,8 +68,7 @@ static gboolean gtkclient_dispatch(GSource *source, if(revents & (G_IO_OUT|G_IO_HUP|G_IO_ERR)) mode |= DISORDER_POLL_WRITE; time(&esource->last_poll); - if(!login_window) - disorder_eclient_polled(esource->client, mode); + disorder_eclient_polled(esource->client, mode); return TRUE; /* ??? not documented */ } @@ -126,14 +125,15 @@ static void gtkclient_comms_error(void attribute((unused)) *u, /** @brief Report a protocol-level error * * The error will not be retried. We offer a callback to the submitter of the - * original command and if none is supplied we pop up an error box. + * original command and if none is supplied we drop the error message in the + * status bar. */ static void gtkclient_protocol_error(void attribute((unused)) *u, void attribute((unused)) *v, - int code, + int attribute((unused)) code, const char *msg) { D(("gtkclient_protocol_error %s", msg)); - popup_protocol_error(code, msg); + gtk_label_set_text(GTK_LABEL(report_label), msg); } /** @brief Report callback from eclient */