]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Comment tweaks; make it a little more obvious the difference
authorTim Kientzle <kientzle@gmail.com>
Sat, 30 May 2009 07:38:01 +0000 (03:38 -0400)
committerTim Kientzle <kientzle@gmail.com>
Sat, 30 May 2009 07:38:01 +0000 (03:38 -0400)
between examples/untar.c and contrib/untar.c.  I should
probably rename one of these.

SVN-Revision: 1144

examples/untar.c

index 88f6dc26de0137d52e7eb64d31b0bc891309d35a..468c1079e1d9a6810ccc1cb663e6ed7b5c780c6f 100644 (file)
@@ -4,15 +4,16 @@
  */
 
 /*
- * This is a compact tar extraction program whose primary goal is
- * small size.  Statically linked, it can be under 64k, depending on
- * how cleanly factored your system libraries are.  Note that this
- * uses the standard libarchive, without any special recompilation.
- * The only functional concession is that this program uses the
- * uid/gid from the archive instead of doing uname/gname lookups.
- * (Call archive_write_disk_set_standard_lookup() to enable
- * uname/gname lookups, but be aware that this can add 500k or more to
- * a static executable, depending on the system libraries.)
+ * This is a compact tar extraction program using libarchive whose
+ * primary goal is small executable size.  Statically linked, it can
+ * be under 64k, depending on how cleanly factored your system
+ * libraries are.  Note that this uses the standard libarchive,
+ * without any special recompilation.  The only functional concession
+ * is that this program uses the uid/gid from the archive instead of
+ * doing uname/gname lookups.  (Call
+ * archive_write_disk_set_standard_lookup() to enable uname/gname
+ * lookups, but be aware that this can add 500k or more to a static
+ * executable, depending on the system libraries.)
  *
  * To build:
  * gcc -static -Wall -o untar untar.c -larchive