X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-15-timeout.c;h=510a97203865af538352ef233d0486f8562d5c60;hp=e8897c95759e3f3a58ce1905d321fd162d19776a;hb=0998955055e45ef980a2dfdbd302142269abdd26;hpb=7a8a585c32d1010426f587a6933f05de7a06dfd0 diff --git a/ccan/io/test/run-15-timeout.c b/ccan/io/test/run-15-timeout.c index e8897c95..510a9720 100644 --- a/ccan/io/test/run-15-timeout.c +++ b/ccan/io/test/run-15-timeout.c @@ -35,14 +35,14 @@ static struct io_plan *start_ok(struct io_conn *conn, struct data *d) ok1(d->state == 0); d->state++; io_timeout(conn, time_from_usec(d->timeout_usec), timeout, d); - return io_read(d->buf, sizeof(d->buf), io_next(conn, no_timeout, d)); + return io_read(conn, d->buf, sizeof(d->buf), no_timeout, d); } static void finish_ok(struct io_conn *conn, struct data *d) { ok1(d->state == 2); d->state++; - io_break(d, NULL); + io_break(conn, d, NULL, NULL); } static int make_listen_fd(const char *port, struct addrinfo **info)