X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=dccp_send.c;h=273961fcf908fdfbc6faa2b953210930a48fae5e;hp=f05e5bdd53e432b10c7e08dcf823619f08df0373;hb=f269333700038603703ec79c909d514bee731faf;hpb=d830824b39d538a9311ed8a490b8265dc2caa73a diff --git a/dccp_send.c b/dccp_send.c index f05e5bdd..273961fc 100644 --- a/dccp_send.c +++ b/dccp_send.c @@ -76,7 +76,7 @@ static void dccp_post_select(fd_set *rfds, __a_unused fd_set *wfds) } PARA_NOTICE_LOG("connection from %s\n", inet_ntoa(dc->addr.sin_addr)); dc->fd = ret; - list_add(&dc->node, &clients); + para_list_add(&dc->node, &clients); add_close_on_fork_list(dc->fd); mark_fd_nonblock(dc->fd); } @@ -132,7 +132,7 @@ again: if (ret < 0) { if (errno != EAGAIN || !retries++ > DCCP_RETRIES) goto err_out; - PARA_DEBUG_LOG("EAGAIN #%zd@%zd/%d\n", retries, written, len); + PARA_DEBUG_LOG("EAGAIN #%d@%zd/%zd\n", retries, written, len); goto again; } retries = 0;