summaryrefslogtreecommitdiffstats
path: root/testing/partimage/partimage-0.6.9-zlib-1.2.6.patch
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2012-03-28 13:02:58 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2012-03-28 13:02:58 +0000
commit3535ddf60dc7b1825cbeeff2dca0ae865d2d8f45 (patch)
tree81a29eab36908b6e2f4faf18f0250b5701b91288 /testing/partimage/partimage-0.6.9-zlib-1.2.6.patch
parentb9f82abf182e321f8e8cc7088ce3d89a7ffae1ca (diff)
downloadaports-3535ddf60dc7b1825cbeeff2dca0ae865d2d8f45.tar.bz2
aports-3535ddf60dc7b1825cbeeff2dca0ae865d2d8f45.tar.xz
testing/partimage: upgrade to 0.6.9
Diffstat (limited to 'testing/partimage/partimage-0.6.9-zlib-1.2.6.patch')
-rw-r--r--testing/partimage/partimage-0.6.9-zlib-1.2.6.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/partimage/partimage-0.6.9-zlib-1.2.6.patch b/testing/partimage/partimage-0.6.9-zlib-1.2.6.patch
new file mode 100644
index 000000000..9922daa81
--- /dev/null
+++ b/testing/partimage/partimage-0.6.9-zlib-1.2.6.patch
@@ -0,0 +1,35 @@
+diff --git a/src/client/imagefile.cpp b/src/client/imagefile.cpp
+index dd83411..62d0f72 100644
+--- a/src/client/imagefile.cpp
++++ b/src/client/imagefile.cpp
+@@ -783,7 +783,7 @@ void CImage::openWriting()
+ else if (m_options.dwCompression == COMPRESS_GZIP) // Gzip compression
+ {
+ showDebug(1, "open gzip\n");
+- m_gzImageFile = (gzFile *) gzdopen(m_nFdImage, "wb"); //"wb1h");
++ m_gzImageFile = gzdopen(m_nFdImage, "wb"); //"wb1h");
+ if (m_gzImageFile == NULL)
+ {
+ showDebug(1, "error:%d %s\n", errno, strerror(errno));
+@@ -1098,7 +1098,7 @@ void CImage::openReading(CVolumeHeader *vh /* = NULL */)
+ }
+ else if (m_options.dwCompression == COMPRESS_GZIP) // Gzip compression
+ {
+- m_gzImageFile = (gzFile *) gzdopen(m_nFdImage, "rb");
++ m_gzImageFile = gzdopen(m_nFdImage, "rb");
+ if (m_gzImageFile == NULL)
+ THROW(ERR_ERRNO, errno);
+ else
+diff --git a/src/client/imagefile.h b/src/client/imagefile.h
+index 4ba8910..6adb098 100644
+--- a/src/client/imagefile.h
++++ b/src/client/imagefile.h
+@@ -41,7 +41,7 @@ class CImage
+ COptions m_options;
+
+ FILE *m_fImageFile;
+- gzFile *m_gzImageFile;
++ gzFile m_gzImageFile;
+ BZFILE *m_bzImageFile;
+
+ int m_nFdImage;