X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=http_recv.c;h=63b66d12610831ce06d362c4a533b9bc3a53e643;hp=4283db4ba847dcd9a75025424bd48af36f1c799f;hb=e65a59602ff5a5ff38ce59f40aa222aa06ce3bda;hpb=7a0852896a75d852dbd2ac848ec5c0be3b5dea71 diff --git a/http_recv.c b/http_recv.c index 4283db4b..63b66d12 100644 --- a/http_recv.c +++ b/http_recv.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2007 Andre Noll + * Copyright (C) 2005-2008 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -100,9 +100,10 @@ static void http_recv_post_select(struct sched *s, struct task *t) struct receiver_node *rn = t->private_data; struct private_http_recv_data *phd = rn->private_data; - t->ret = -E_HTTP_RECV_EOF; - if (rn->output_eof && *rn->output_eof) + if (rn->output_error && *rn->output_error) { + t->ret = *rn->output_error; goto out; + } t->ret = 1; if (!s->select_ret) goto out; @@ -136,13 +137,13 @@ static void http_recv_post_select(struct sched *s, struct task *t) BUFSIZE - rn->loaded); if (t->ret <= 0) { if (!t->ret) - t->ret = -E_HTTP_RECV_EOF; + t->ret = -E_RECV_EOF; goto out; } rn->loaded += t->ret; out: if (t->ret < 0) - rn->eof = 1; + rn->error = t->ret; } static void http_recv_close(struct receiver_node *rn)