Remove two unused members from connection
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 12 Feb 2010 10:56:43 +0000 (11:56 +0100)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 12 Feb 2010 10:56:43 +0000 (11:56 +0100)
src/connection.c

index dd61f1c..1e37171 100644 (file)
@@ -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;