diff options
author | ru <ru@FreeBSD.org> | 2003-03-09 21:39:52 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-03-09 21:39:52 +0000 |
commit | 78058065601f61abba2232c0557d50854aa97998 (patch) | |
tree | 0b28b7fda693e8061dc3f410d1d1123b6fd87086 /usr.sbin/kgzip | |
parent | ef078ef6a1ca0a6294f1d0ae5177a3f4b5fd8aac (diff) | |
download | FreeBSD-src-78058065601f61abba2232c0557d50854aa97998.zip FreeBSD-src-78058065601f61abba2232c0557d50854aa97998.tar.gz |
Get rid of the randomizing factor.
Diffstat (limited to 'usr.sbin/kgzip')
-rw-r--r-- | usr.sbin/kgzip/kgzcmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/kgzip/kgzcmp.c b/usr.sbin/kgzip/kgzcmp.c index 7406423..01c7763 100644 --- a/usr.sbin/kgzip/kgzcmp.c +++ b/usr.sbin/kgzip/kgzcmp.c @@ -135,7 +135,7 @@ mk_data(const struct iodesc * idi, const struct iodesc * ido, close(idi->fd); dup2(ido->fd, STDOUT_FILENO); close(ido->fd); - execlp("gzip", "gzip", "-9", (char *)NULL); + execlp("gzip", "gzip", "-9n", (char *)NULL); warn(NULL); _exit(1); default: |