From 1e48886c7e77fa7bccfdee3cca6f0fbdba74e4a1 Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Sat, 8 Nov 2025 01:31:02 -0500 Subject: [PATCH] long option name --- .../security-misc/check-for-usb-controller#security-misc-shared | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/libexec/security-misc/check-for-usb-controller#security-misc-shared b/usr/libexec/security-misc/check-for-usb-controller#security-misc-shared index 7688ee2..a23031b 100755 --- a/usr/libexec/security-misc/check-for-usb-controller#security-misc-shared +++ b/usr/libexec/security-misc/check-for-usb-controller#security-misc-shared @@ -5,7 +5,7 @@ export LC_ALL='C' -if lspci | grep -q '^[^ ]* USB controller: '; then +if lspci | grep --quiet '^[^ ]* USB controller: '; then exit 0 fi exit 1