Ultra-simplification of the build system for the text client.
[citadel.git] / citadel / journaling.h
index 2432ddeb4eb4712862e7c55a82333ffe8e0e3715..74c79816afaf05e33123e730ff75e2b8ffce86e7 100644 (file)
@@ -1,8 +1,6 @@
-/* $Id: $ */
-
 struct jnlq {
        struct jnlq *next;
-       struct recptypes recps;
+       recptypes recps;
        char *from;
        char *node;
        char *rfca;
@@ -12,7 +10,7 @@ struct jnlq {
 };
 
 void JournalBackgroundSubmit(struct CtdlMessage *msg,
-                        char *saved_rfc822_version,
-                        struct recptypes *recps);
+                        StrBuf *saved_rfc822_version,
+                        recptypes *recps);
 void JournalRunQueueMsg(struct jnlq *jmsg);
 void JournalRunQueue(void);