Rework blogview renderer, so it can build the threads with only the information our...
[citadel.git] / webcit / dav_propfind.c
index 64e7a1297c470d22860661d3e1cf74002a0acb10..3df13423e6cb13a9bd55784ea2247b547e63c565 100644 (file)
@@ -774,7 +774,8 @@ void dav_propfind(void)
 int ParseMessageListHeaders_EUID(StrBuf *Line, 
                                 const char **pos, 
                                 message_summary *Msg, 
-                                StrBuf *ConversionBuffer)
+                                StrBuf *ConversionBuffer,
+                                void **ViewSpecific)
 {
        Msg->euid = NewStrBuf();
        StrBufExtract_NextToken(Msg->euid,  Line, pos, '|');
@@ -834,6 +835,7 @@ InitModule_PROPFIND
                ParseMessageListHeaders_EUID,
                NULL, //// ""
                DavUIDL_RenderView_or_Tail,
-               DavUIDL_Cleanup);
+               DavUIDL_Cleanup,
+               NULL);
 
 }