Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Aug 2016 00:56:37 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r304875 - head/usr.bin/gzip
Message-ID:  <201608270056.u7R0ubGm081712@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608270056.u7R0ubGm081712>