diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-03 06:19:04 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-03 06:19:04 +0000 |
commit | 6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07 (patch) | |
tree | 1f70b259fe7fb5c82f437c6b006284893cf4eb5a /testing/partimage/partimage-0.6.9-zlib-1.2.6.patch | |
parent | 66765c30ac7a9c9a560ab43d5618de820fb373c6 (diff) | |
download | aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.bz2 aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.xz |
testing/*: removed
We dont ship testing things in a stable release
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.patch | 35 |
1 files changed, 0 insertions, 35 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 deleted file mode 100644 index 9922daa811..0000000000 --- a/testing/partimage/partimage-0.6.9-zlib-1.2.6.patch +++ /dev/null @@ -1,35 +0,0 @@ -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; |