* The size constant "256" which shows up everywhere as a buffer size has now
[citadel.git] / citadel / msgbase.h
index 50db62bfa5e466ec9c286a3ab6629351ca3d9a5a..c713b8556a8b20ac2136191a3a157a6c6a52f771 100644 (file)
@@ -32,14 +32,14 @@ enum {
 
 
 struct ma_info {
-       char prefix[256];       /* Prefix for a multipart/alternative */
+       char prefix[SIZ];       /* Prefix for a multipart/alternative */
        int is_ma;              /* Set to 1 if we are using this stuff */
        int did_print;          /* One alternative has been displayed */
 };
 
 
 struct repl {                  /* Info for replication checking */
-       char extended_id[256];
+       char extended_id[SIZ];
        time_t highest;
 };