Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Aug 2008 14:16:53 GMT
From:      Anselm Strauss <strauss@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 148706 for review
Message-ID:  <200808281416.m7SEGrnj005852@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=148706

Change 148706 by strauss@strauss_marvelman on 2008/08/28 14:16:08

	Accidentally removed ZIP from the supported write formats by name.

Affected files ...

.. //depot/projects/soc2008/strauss_libarchive/libarchive/archive.h#7 edit
.. //depot/projects/soc2008/strauss_libarchive/libarchive/archive_write_set_format_by_name.c#7 edit

Differences ...

==== //depot/projects/soc2008/strauss_libarchive/libarchive/archive.h#7 (ktext) ====

@@ -470,6 +470,7 @@
 __LA_DECL int		 archive_write_set_format_shar(struct archive *);
 __LA_DECL int		 archive_write_set_format_shar_dump(struct archive *);
 __LA_DECL int		 archive_write_set_format_ustar(struct archive *);
+__LA_DECL int		 archive_write_set_format_zip(struct archive *);
 __LA_DECL int		 archive_write_open(struct archive *, void *,
 		     archive_open_callback *, archive_write_callback *,
 		     archive_close_callback *);

==== //depot/projects/soc2008/strauss_libarchive/libarchive/archive_write_set_format_by_name.c#7 (ktext) ====

@@ -57,6 +57,7 @@
 	{ "shar",	archive_write_set_format_shar },
 	{ "shardump",	archive_write_set_format_shar_dump },
 	{ "ustar",	archive_write_set_format_ustar },
+	{ "zip",	archive_write_set_format_zip },
 	{ NULL,		NULL }
 };
 



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