]> wimlib.net Git - wimlib/blobdiff - src/util.c
Add WIMLIB_EXTRACT_FLAG_WIMBOOT
[wimlib] / src / util.c
index b2e59e40417c3a4a555770a0d6d462f632466e6a..3053fd9e6d2bccbd76e1b15459ee30c0fd33ddf3 100644 (file)
@@ -162,9 +162,9 @@ wimlib_vmsg(const tchar *tag, const tchar *format,
                tfputs(tag, stderr);
                wimlib_vfprintf(stderr, format, va);
                if (perror && errno_save != 0) {
-                       tchar buf[50];
+                       tchar buf[64];
                        int res;
-                       res = tstrerror_r(errno_save, buf, sizeof(buf));
+                       res = tstrerror_r(errno_save, buf, ARRAY_LEN(buf));
                        if (res) {
                                tsprintf(buf,
                                         T("unknown error (errno=%d)"),
@@ -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  */