From: Eric Biggers Date: Thu, 24 Sep 2015 02:56:03 +0000 (-0500) Subject: WIMBoot / system compression: try WOFADK in addition to WOF X-Git-Tag: v1.8.3~104 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=873a86a1a5097f2a161494341d8d962453a30465;ds=sidebyside WIMBoot / system compression: try WOFADK in addition to WOF --- diff --git a/src/win32_common.c b/src/win32_common.c index 3b0d9e84..30f7d623 100644 --- a/src/win32_common.c +++ b/src/win32_common.c @@ -407,7 +407,10 @@ win32_try_to_attach_wof(const wchar_t *drive) if (func_FilterAttach) { HRESULT res; - res = (*func_FilterAttach)(L"WoF", drive, NULL, 0, NULL); + res = (*func_FilterAttach)(L"wof", drive, NULL, 0, NULL); + + if (res != S_OK) + res = (*func_FilterAttach)(L"wofadk", drive, NULL, 0, NULL); if (res == S_OK) retval = true;