svn commit: r309850 - stable/11/usr.bin/gzip

Xin LI delphij at FreeBSD.org
Sun Dec 11 08:14:43 UTC 2016


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


More information about the svn-src-stable-11 mailing list