--- dzip-2.9-system-zlib.patch.orig 2010-01-17 16:12:55.219605620 +0100 +++ dzip-2.9-system-zlib.patch 2010-01-17 16:13:11.663605209 +0100 @@ -50,3 +50,23 @@ -v1code.o: v1code.c dzip.h dzipcon.h \ No newline at end of file +v1code.o: v1code.c dzip.h dzipcon.h +--- conmain.c.orig 2010-01-17 15:10:20.938605770 +0000 ++++ conmain.c 2010-01-17 15:10:34.180603846 +0000 +@@ -507,8 +507,8 @@ + if (!strcmp(argv[i],"-o")) i++; + } + +- zs.zalloc = Dzip_calloc; +- zs.zfree = free; ++ zs.zalloc = Z_NULL; // Dzip_calloc; <- wrong number of arguments, reverting to default ++ zs.zfree = Z_NULL; // free; <- wrong number of arguments, reverting to default + + if (flag[SW_LIST] || flag[SW_EXTRACT] || flag[SW_VERIFY]) + { +@@ -618,4 +618,4 @@ + dzDeleteFiles_MakeList(files + 1, fileargs - 1); + free(files); + exit(0); +-} +\ No newline at end of file ++}