From 549be30350c8fdc06467a7633938b975be23f14f Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 12 Feb 2010 11:56:43 +0100 Subject: [PATCH] Remove two unused members from connection --- src/connection.c | 4 ---- 1 file changed, 4 deletions(-) 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; -- 1.7.10.4