Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Jul 2008 14:44:14 GMT
From:      Anselm Strauss <strauss@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 145890 for review
Message-ID:  <200807251444.m6PEiEEs090324@repoman.freebsd.org>

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

Change 145890 by strauss@strauss_marvelman on 2008/07/25 14:44:10

	Added ZIP as a supported write format (Tim)

Affected files ...

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

Differences ...

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

@@ -471,6 +471,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#5 (ktext) ====

@@ -24,7 +24,7 @@
  */
 
 #include "archive_platform.h"
-__FBSDID("$Id$ $Change: 142961 $ $DateTime$ $Author$");
+__FBSDID("$Id$ $Change: 145890 $ $DateTime$ $Author$");
 
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
@@ -56,6 +56,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?200807251444.m6PEiEEs090324>