X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fconnection.c;h=79eb40e5809c2e7e9785974d3b8bb42b2803b20a;hb=4153b0ad5760dbcc7e0fb1d370f403c133b18e25;hp=c2c5677f4ada038e012c25b2f8715f66c59da118;hpb=6f67e37390eee5bb4df6a456de88045ef810406d;p=pazpar2-moved-to-github.git diff --git a/src/connection.c b/src/connection.c index c2c5677..79eb40e 100644 --- a/src/connection.c +++ b/src/connection.c @@ -195,21 +195,21 @@ static void non_block_events(struct connection *co) ev = ZOOM_connection_last_event(link); #if 0 - yaz_log(YLOG_LOG, "ZOOM_EVENT_%s", ZOOM_get_event_str(ev)); + yaz_log(YLOG_LOG, "%p Connection ZOOM_EVENT_%s", co, ZOOM_get_event_str(ev)); #endif switch (ev) { case ZOOM_EVENT_END: { const char *error, *addinfo; - int err; + int err; if ((err = ZOOM_connection_error(link, &error, &addinfo))) { yaz_log(YLOG_LOG, "Error %s from %s", error, client_get_url(cl)); } iochan_settimeout(iochan, co->session_timeout); - client_set_diagnostic(cl, err); + client_set_diagnostic(cl, err); client_set_state(cl, Client_Idle); yaz_cond_broadcast(co->host->cond_ready); }