X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Feventl.c;h=5084f2d13c87719c98148137bc0a73dd72a609ed;hb=9cc8f4a4d0fd7f1e4bd6c9d5c85ef2dccaab5743;hp=649e6de11b2c0f4c0a02d4efb6693e3b90228fcb;hpb=c519e4716646be3b24f7d4d3de99e06e423da865;p=yaz-moved-to-github.git diff --git a/src/eventl.c b/src/eventl.c index 649e6de..5084f2d 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: eventl.c,v 1.7 2005-02-01 14:46:47 adam Exp $ + * $Id: eventl.c,v 1.8 2005-03-01 20:37:01 adam Exp $ */ /** @@ -55,7 +55,7 @@ static int log_level=0; static int log_level_initialized=0; -IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags, int port) +IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags, int chan_id) { IOCHAN new_iochan; @@ -74,7 +74,7 @@ IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags, int port) new_iochan->force_event = 0; new_iochan->last_event = new_iochan->max_idle = 0; new_iochan->next = NULL; - new_iochan->port = port; + new_iochan->chan_id = chan_id; return new_iochan; }