]> wimlib.net Git - wimlib/blobdiff - src/util.c
wimlib_update_image(): Do proper rollbacks & replace files by default
[wimlib] / src / util.c
index 2d151478164f247bca678f6583d7ae71a86550fa..8be76594e5125374ae92b564fd9c5640dbdf5834 100644 (file)
@@ -54,7 +54,7 @@
 #include <time.h>
 #include <unistd.h>
 
-static size_t
+size_t
 utf16le_strlen(const utf16lechar *s)
 {
        const utf16lechar *p = s;
@@ -304,8 +304,7 @@ static const tchar *error_strings[] = {
        [WIMLIB_ERR_INVALID_CHUNK_SIZE]
                = T("The WIM chunk size was invalid"),
        [WIMLIB_ERR_INVALID_COMPRESSION_TYPE]
-               = T("The WIM is compressed, but is not marked as having LZX or "
-                       "XPRESS compression"),
+               = T("The WIM compression type was invalid"),
        [WIMLIB_ERR_INVALID_HEADER]
                = T("The WIM header was invalid"),
        [WIMLIB_ERR_INVALID_IMAGE]
@@ -426,6 +425,8 @@ static const tchar *error_strings[] = {
                = T("The XML data of the WIM is invalid"),
        [WIMLIB_ERR_WIM_IS_ENCRYPTED]
                = T("The WIM file (or parts of it) is encrypted"),
+       [WIMLIB_ERR_WIMBOOT]
+               = T("Failed to set WIMBoot pointer data"),
 };
 
 /* API function documented in wimlib.h  */