X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=http_send.c;h=65fec69f19e5b4de134642953b582f02ab2a63b4;hp=51edd9d96704f20bb8969e53d8171ccc328458aa;hb=591fd6cd2d65242856a953a2b5dee7e964128abf;hpb=77d770f7b0930476d95021bd9e6d6007db53d391 diff --git a/http_send.c b/http_send.c index 51edd9d9..65fec69f 100644 --- a/http_send.c +++ b/http_send.c @@ -233,9 +233,9 @@ static int http_com_allow(struct sender_command_data *scd) return 1; } -static char *http_info(void) +static char *http_status(void) { - return get_sender_info(hss, "http"); + return generic_sender_status(hss, "http"); } /** @@ -249,7 +249,7 @@ static char *http_info(void) void http_send_init(struct sender *s) { int ret; - s->info = http_info; + s->status = http_status; s->send = http_send; s->pre_select = http_pre_select; s->post_select = http_post_select;