remove typedef from struct recptypes
[citadel.git] / citadel / journaling.h
index 74c79816afaf05e33123e730ff75e2b8ffce86e7..4a66781aed8e5956f1bcb8aa96080efa8e4d807e 100644 (file)
@@ -1,6 +1,6 @@
 struct jnlq {
        struct jnlq *next;
-       recptypes recps;
+       struct recptypes recps;
        char *from;
        char *node;
        char *rfca;
@@ -11,6 +11,6 @@ struct jnlq {
 
 void JournalBackgroundSubmit(struct CtdlMessage *msg,
                         StrBuf *saved_rfc822_version,
-                        recptypes *recps);
+                        struct recptypes *recps);
 void JournalRunQueueMsg(struct jnlq *jmsg);
 void JournalRunQueue(void);