]> wimlib.net Git - wimlib/commitdiff
read_capture_config(): Don't warn about compression sections
authorEric Biggers <ebiggers3@gmail.com>
Thu, 4 Sep 2014 04:37:04 +0000 (23:37 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Thu, 4 Sep 2014 04:37:04 +0000 (23:37 -0500)
src/capture_common.c

index a0d56bfd4b8f1bd1564ef5931e3709f9a4b2556c..caf9529c3b70b5b85f7313ab867241010f289984 100644 (file)
@@ -178,8 +178,15 @@ read_capture_config(const tchar *config_file, const void *buf,
 
        /* [PrepopulateList] is used for apply, not capture.  But since we do
         * understand it, recognize it, thereby avoiding the unrecognized
-        * section warning, but discard the resulting strings.  */
+        * section warning, but discard the resulting strings.
+        *
+        * We currently ignore [CompressionExclusionList] and
+        * [CompressionFolderList].  This is a known issue that doesn't seem to
+        * have any real consequences, so don't issue warnings about not
+        * recognizing those sections.  */
        STRING_SET(prepopulate_pats);
+       STRING_SET(compression_exclusion_pats);
+       STRING_SET(compression_folder_pats);
 
        struct text_file_section sections[] = {
                {T("ExclusionList"),
@@ -188,6 +195,10 @@ read_capture_config(const tchar *config_file, const void *buf,
                        &config->exclusion_exception_pats},
                {T("PrepopulateList"),
                        &prepopulate_pats},
+               {T("CompressionExclusionList"),
+                       &compression_exclusion_pats},
+               {T("CompressionFolderList"),
+                       &compression_folder_pats},
        };
        void *mem;
 
@@ -198,6 +209,8 @@ read_capture_config(const tchar *config_file, const void *buf,
                return ret;
 
        FREE(prepopulate_pats.strings);
+       FREE(compression_exclusion_pats.strings);
+       FREE(compression_folder_pats.strings);
 
        config->buf = mem;
        return 0;