summaryrefslogtreecommitdiff
path: root/dpkg-deb
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2014-01-07 04:33:17 +0100
committerGuillem Jover <guillem@debian.org>2014-01-15 15:02:16 +0100
commite7e052b462e794165411aa12b36324a66dcb6700 (patch)
tree3a2b7da92516c2dea34e5d8bd409153053a7ee98 /dpkg-deb
parent517b54aff9bdb67768c109829cbd3631021bbddc (diff)
downloaddpkg-e7e052b462e794165411aa12b36324a66dcb6700.tar.gz
dpkg-deb: Use default gzip compression level instead of hardcoding it
Use the global default, instead of setting it explicitly in the code.
Diffstat (limited to 'dpkg-deb')
-rw-r--r--dpkg-deb/build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dpkg-deb/build.c b/dpkg-deb/build.c
index e871824b6..c49dbc0e3 100644
--- a/dpkg-deb/build.c
+++ b/dpkg-deb/build.c
@@ -523,7 +523,7 @@ do_build(const char *const *argv)
params.type = compressor_type_gzip;
params.strategy = compressor_strategy_none;
- params.level = 9;
+ params.level = -1;
compress_filter(&params, p1[0], gzfd, _("compressing control member"));
exit(0);