From d83f8d1ff2016d70565f75ef1c4f5dc7d95b2109 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 13 Jan 2003 22:11:34 +0000 Subject: [PATCH] Fix missing arg in select code --- zutil/zoom-c.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zutil/zoom-c.c b/zutil/zoom-c.c index cf5b67f..0791f7a 100644 --- a/zutil/zoom-c.c +++ b/zutil/zoom-c.c @@ -2,7 +2,7 @@ * Copyright (c) 2000-2003, Index Data * See the file LICENSE for details. * - * $Id: zoom-c.c,v 1.13 2003-01-06 08:20:29 adam Exp $ + * $Id: zoom-c.c,v 1.14 2003-01-13 22:11:34 adam Exp $ * * ZOOM layer for C, connections, result sets, queries. */ @@ -2745,7 +2745,7 @@ ZOOM_event (int no, ZOOM_connection *cs) { ZOOM_Event event = ZOOM_Event_create(ZOOM_EVENT_TIMEOUT); /* timeout and this connection was waiting */ - set_ZOOM_error(c, ZOOM_ERROR_TIMEOUT); + set_ZOOM_error(c, ZOOM_ERROR_TIMEOUT, 0); do_close (c); yaz_log (LOG_DEBUG, "timeout"); ZOOM_connection_put_event(c, event); -- 1.7.10.4