fix comment
authormarc <devnull@localhost>
Mon, 8 Jan 1996 07:12:19 +0000 (07:12 +0000)
committermarc <devnull@localhost>
Mon, 8 Jan 1996 07:12:19 +0000 (07:12 +0000)
CVS patchset: 160
CVS date: 1996/01/08 07:12:19

lib/header.c

index da423f7..97a9678 100644 (file)
@@ -288,12 +288,11 @@ Header readHeader(int fd)
     }
 
     /* Finally, read the data */
-    /* XXX need to convert the data! */
     h->data = malloc(dl);
     h->data_malloced = dl;
     h->data_used = dl;
     read(fd, h->data, dl);
-
+    /* and convert it */
     converted_data = dataNetworkToHost(h);
     free(h->data);
     h->data = converted_data;