]> wimlib.net Git - wimlib/blobdiff - programs/imagex.c
wimlib-imagex: Accept "max" as alias for "maximum"
[wimlib] / programs / imagex.c
index bc16624a17e2c174a1d9ce7511c3d06a88d8db6f..0f800a846cba94f709f5f95660e1edf8c674fda8 100644 (file)
@@ -479,7 +479,9 @@ verify_image_exists_and_is_single(int image, const tchar *image_name,
 static int
 get_compression_type(const tchar *optarg)
 {
-       if (!tstrcasecmp(optarg, T("maximum")) || !tstrcasecmp(optarg, T("lzx")))
+       if (!tstrcasecmp(optarg, T("maximum")) ||
+           !tstrcasecmp(optarg, T("lzx")) ||
+           !tstrcasecmp(optarg, T("max")))
                return WIMLIB_COMPRESSION_TYPE_LZX;
        else if (!tstrcasecmp(optarg, T("fast")) || !tstrcasecmp(optarg, T("xpress")))
                return WIMLIB_COMPRESSION_TYPE_XPRESS;