From: Adam Dickmeiss Date: Fri, 12 Feb 2010 10:56:43 +0000 (+0100) Subject: Remove two unused members from connection X-Git-Tag: v1.4.0~138 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=549be30350c8fdc06467a7633938b975be23f14f;p=pazpar2-moved-to-github.git Remove two unused members from connection --- diff --git a/src/connection.c b/src/connection.c index dd61f1c..1e37171 100644 --- a/src/connection.c +++ b/src/connection.c @@ -55,8 +55,6 @@ struct connection { ZOOM_connection link; struct host *host; struct client *client; - char *ibuf; - int ibufsize; char *zproxy; enum { Conn_Resolving, @@ -146,8 +144,6 @@ static struct connection *connection_create(struct client *cl, else { new = xmalloc(sizeof (struct connection)); - new->ibuf = 0; - new->ibufsize = 0; } new->host = host; new->next = new->host->connections;