From 4fcb668b79743a05a8f7ac75ee652809565ffdc1 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sat, 15 Aug 2015 10:26:43 +0200 Subject: [PATCH] Ignore -W and -K arguments for check_disk on Windows fixes #9913 --- plugins/check_disk.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/check_disk.cpp b/plugins/check_disk.cpp index c7a565d01..f66a79e6b 100644 --- a/plugins/check_disk.cpp +++ b/plugins/check_disk.cpp @@ -81,6 +81,8 @@ static INT parseArguments(INT ac, WCHAR **av, po::variables_map& vm, printInfoSt ("path,p", po::wvalue>()->multitoken(), "Declare explicitly which drives to check (default checks all)") ("exclude_device,x", po::wvalue>()->multitoken(), "Exclude these drives from check") ("exclude-type,X", po::wvalue>()->multitoken(), "Exclude partition types (ignored)") + ("iwarning,W", po::wvalue(), "Warning threshold for inodes (ignored)") + ("icritical,K", po::wvalue(), "Critical threshold for inodes (ignored)") ("unit,u", po::wvalue(), "Assign unit possible are: B, kB, MB, GB, TB")\ ("megabytes,m", "use megabytes, overridden by -unit") ; -- 2.40.0