svn commit: r304875 - head/usr.bin/gzip
Xin LI
delphij at FreeBSD.org
Sat Aug 27 00:56:38 UTC 2016
Author: delphij
Date: Sat Aug 27 00:56:37 2016
New Revision: 304875
URL: https://svnweb.freebsd.org/changeset/base/304875
Log:
Use printable ASCII instead of octal representation.
MFC after: 2 weeks
Modified:
head/usr.bin/gzip/gzip.c
Modified: head/usr.bin/gzip/gzip.c
==============================================================================
--- head/usr.bin/gzip/gzip.c Sat Aug 27 00:47:47 2016 (r304874)
+++ head/usr.bin/gzip/gzip.c Sat Aug 27 00:56:37 2016 (r304875)
@@ -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
More information about the svn-src-head
mailing list