]> wimlib.net Git - wimlib/commitdiff
Cleanups
authorEric Biggers <ebiggers3@gmail.com>
Wed, 19 Mar 2014 02:56:09 +0000 (21:56 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Wed, 19 Mar 2014 03:05:08 +0000 (22:05 -0500)
NEWS
configure.ac
doc/imagex-export.1.in
include/wimlib.h
programs/imagex.c
programs/mkwinpeimg.in
src/mount_image.c

diff --git a/NEWS b/NEWS
index bd50c5895451596ab7f1edf9bc9269d3eafd1afe..00f43502bd678c79a0712f0508e4e9824b6b3c8f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -8,14 +8,14 @@ Version 1.6.2 (BETA):
 
        wimunmount now provides the '--new-image' option to cause changes to a
        read-write mounted image to be committed as a new image rather than as
-       an update of the same image.  (The corresponding new library flag is
+       an update of the mounted image.  (The corresponding new library flag is
        WIMLIB_UNMOUNT_FLAG_NEW_IMAGE.)
 
-       The LZMS compression chunk size, or "dictionary size", may now be up to
-       1 GiB (2^30).
+       The LZMS ("recovery") compression chunk size, or "dictionary size", may
+       now be up to 1 GiB (1,073,741,824 bytes).
 
-       The performance of LZX and LZMS compression with large chunk sizes has
-       been slightly improved.
+       The performance of LZX ("maximum") and LZMS ("recovery") compression
+       with large chunk sizes has been slightly improved.
 
 Version 1.6.1:
        Stored files with size exactly 4 GiB (4,294,967,296 bytes) are now
index 944ccb0080747be340850a65bfc161983c604f48..d1b7799b8f2cf3025eb2ef5f83694147a7d398bd 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([wimlib], [1.6.2-beta], [ebiggers3@gmail.com])
+AC_INIT([wimlib], [1.6.2-BETA], [ebiggers3@gmail.com])
 AC_CONFIG_SRCDIR([src/wim.c])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([build-aux])
index 64ee3c68b529c46124deaa6960cad5d78d6977af..a024e38315d97af8f66c7f026b8d6de875db7b51 100644 (file)
@@ -165,7 +165,7 @@ always be created.
 WIMs, which usually contain LZMS-compressed solid blocks and may carry the
 \fI.esd\fR file extension rather than \fI.wim\fR.  However, \fI.esd\fR files
 downloaded directly by the Windows 8 web downloader have encrypted segments, and
-wimlib cannot export images from files until they are first decrypted.  In
+wimlib cannot export images from such files until they are first decrypted.  In
 addition, to ensure the destination archive is created in the original WIM
 format rather than in the newer format, specify \fB--compress\fR=\fImaximum\fR.
 .SH EXAMPLES
index 854bca7c22edfdd1331e515df25f651d931830c8..fd55ebf8c23f0b70c8b641dc9923a3599fa7c52b 100644 (file)
@@ -10,7 +10,7 @@
  */
 
 /*
- * Copyright (C) 2012, 2013 Eric Biggers
+ * Copyright (C) 2012, 2013, 2014 Eric Biggers
  *
  * This file is part of wimlib, a library for working with WIM files.
  *
index c0a9f8c2b9a6195bd4d27758cce9a2dda39bf3ef..6a95b0411a33dc9767d9ff1679a845bb47ba1761 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 /*
- * Copyright (C) 2012, 2013 Eric Biggers
+ * Copyright (C) 2012, 2013, 2014 Eric Biggers
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -4166,8 +4166,8 @@ version(void)
 {
        static const tchar *s =
        T(
-IMAGEX_PROGNAME " (" PACKAGE ") " PACKAGE_VERSION "\n"
-"Copyright (C) 2012, 2013 Eric Biggers\n"
+IMAGEX_PROGNAME " (distributed with " PACKAGE " " PACKAGE_VERSION ")\n"
+"Copyright (C) 2012, 2013, 2014 Eric Biggers\n"
 "License GPLv3+; GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n"
 "This is free software: you are free to change and redistribute it.\n"
 "There is NO WARRANTY, to the extent permitted by law.\n"
index 42b4a1c5c409e3d6885bb5f176e56d8ce2a862c0..654249b24cf73f9c459145c87671caee9dceaff0 100755 (executable)
@@ -116,7 +116,7 @@ EOF
 }
 
 version() {
-       echo "$script_name (wimlib $WIMLIB_VERSION)"
+       echo "$script_name (distributed with wimlib $WIMLIB_VERSION)"
        exit 0
 }
 
index fac3f78a092ca5cf662620b180e2b6af53dc0530..cf5d43538685c2c0a4ff17077591968a1de59a1d 100644 (file)
@@ -2615,7 +2615,7 @@ wimlib_mount_image(WIMStruct *wim, int image, const char *dir,
 #endif
 
        /* Assign inode numbers.  Also, if a read-write mount was requested,
-        * mark the dentry tree as modified, and add each streams referenced by
+        * mark the dentry tree as modified, and add each stream referenced by
         * files in the image to a list and preemptively double the number of
         * references to each.  The latter is done to allow implementing the
         * WIMLIB_UNMOUNT_FLAG_NEW_IMAGE semantics.  */
@@ -2629,10 +2629,8 @@ wimlib_mount_image(WIMStruct *wim, int image, const char *dir,
                                struct wim_lookup_table_entry *lte;
 
                                lte = inode_stream_lte(inode, i, wim->lookup_table);
-                               if (lte) {
-                                       lte->orig_stream_list = (struct list_head){NULL, NULL};
+                               if (lte)
                                        lte->out_refcnt = 0;
-                               }
                        }
                }
                image_for_each_inode(inode, imd) {