Date: Sun, 11 Dec 2016 08:14:42 +0000 (UTC) From: Xin LI <delphij@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r309850 - stable/11/usr.bin/gzip Message-ID: <201612110814.uBB8EgSu022482@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: delphij Date: Sun Dec 11 08:14:42 2016 New Revision: 309850 URL: https://svnweb.freebsd.org/changeset/base/309850 Log: MFC r304875: Use printable ASCII instead of octal representation. Modified: stable/11/usr.bin/gzip/gzip.c Directory Properties: stable/11/ (props changed) Modified: stable/11/usr.bin/gzip/gzip.c ============================================================================== --- stable/11/usr.bin/gzip/gzip.c Sun Dec 11 07:39:10 2016 (r309849) +++ stable/11/usr.bin/gzip/gzip.c Sun Dec 11 08:14:42 2016 (r309850) @@ -88,7 +88,7 @@ enum filetype { #include <bzlib.h> #define BZ2_SUFFIX ".bz2" -#define BZIP2_MAGIC "\102\132\150" +#define BZIP2_MAGIC "BZh" #endif #ifndef NO_COMPRESS_SUPPORT
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612110814.uBB8EgSu022482>