Got rid of unused string_area struct.
authorWayne Davison <wayned@samba.org>
Fri, 6 Feb 2004 15:33:15 +0000 (15:33 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 6 Feb 2004 15:33:15 +0000 (15:33 +0000)
rsync.h

diff --git a/rsync.h b/rsync.h
index 1506625..aa22cfe 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -435,18 +435,10 @@ struct file_struct {
 #define FLIST_START    (32 * 1024)
 #define FLIST_LINEAR   (FLIST_START * 512)
 
-struct string_area {
-       char *base;
-       char *end;
-       char *current;
-       struct string_area *next;
-};
-
 struct file_list {
        int count;
        int malloced;
        struct file_struct **files;
-       struct string_area *string_area;
 };
 
 struct sum_buf {