Displaying 1 result from an estimated 1 matches for "compression_handl".
Did you mean:
compression_handler
2014 Apr 24
1
maildir compressed message fix patch
...aildir-uidlist.h"
#include "maildir-sync.h"
+#include "compression.h"
#include <stdio.h>
#include <stdlib.h>
@@ -640,6 +641,10 @@
{
const char *fname, *newpath, *extra, *info, *dir;
struct stat st;
+ const struct stat * stp;
+ const struct compression_handler * handler;
+ struct istream * fstream;
+ struct istream * cstream;
fname = strrchr(path, '/');
i_assert(fname != NULL);
@@ -650,13 +655,29 @@
info = strchr(fname, MAILDIR_INFO_SEP);
if (info == NULL) info = "";
+ fstream = i_stream_create_fil...