X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=programs%2Fimagex.c;h=b9fd2d79cea518e883c4b42b4a731abe14e6f773;hp=b0f6283442ae710c36013a7e1a0c60b524608df6;hb=a6e50e8eb32035d44c94fd63bfae6c3de7481055;hpb=9899681e667c07db9a286c38fa76f53cfa726b73 diff --git a/programs/imagex.c b/programs/imagex.c index b0f62834..b9fd2d79 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -418,6 +418,8 @@ get_compression_type(const tchar *optarg) return WIMLIB_COMPRESSION_TYPE_LZX; else if (!tstrcasecmp(optarg, T("fast")) || !tstrcasecmp(optarg, T("xpress"))) return WIMLIB_COMPRESSION_TYPE_XPRESS; + else if (!tstrcasecmp(optarg, T("recovery")) || !tstrcasecmp(optarg, T("lzms"))) + return WIMLIB_COMPRESSION_TYPE_LZMS; else if (!tstrcasecmp(optarg, T("none"))) return WIMLIB_COMPRESSION_TYPE_NONE; else {