From 8afa921f13e731a706491f485e8f23a4dc6bc08d Mon Sep 17 00:00:00 2001 From: Rubiginosa <89671549+Rubiginosa@users.noreply.github.com> Date: Sun, 29 Dec 2024 17:27:21 -0500 Subject: [PATCH] fix: typos in audit suggestions (#745) --- files/justfiles/audit.just | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/justfiles/audit.just b/files/justfiles/audit.just index 74d26a11..78c40907 100644 --- a/files/justfiles/audit.just +++ b/files/justfiles/audit.just @@ -366,17 +366,17 @@ audit-secureblue: if hasPermission "$permissions" "sockets" "x11" && ! hasPermission "$permissions" "sockets" "fallback-x11"; then status="$STATUS_FAILURE" warnings+=("> $f has x11 access!") - suggestions+=("$f has network access To remove it use Flatseal or run: \$ flatpak override -u --nosocket=x11 $f") + suggestions+=("$f has x11 access To remove it use Flatseal or run: \$ flatpak override -u --nosocket=x11 $f") fi if hasPermission "$permissions" "sockets" "session-bus"; then [[ "$status" != "$STATUS_FAILURE" ]] && status="$STATUS_WARNING" warnings+=("> $f has access to the D-Bus session bus!") - suggestions+=("$f has network access To remove it use Flatseal or run: \$ flatpak override -u --nosocket=session-bus $f") + suggestions+=("$f has access to the D-Bus session bus To remove it use Flatseal or run: \$ flatpak override -u --nosocket=session-bus $f") fi if hasPermission "$permissions" "sockets" "system-bus"; then [[ "$status" != "$STATUS_FAILURE" ]] && status="$STATUS_WARNING" warnings+=("> $f has access to the D-Bus system bus!") - suggestions+=("$f has network access To remove it use Flatseal or run: \$ flatpak override -u --nosocket=system-bus $f") + suggestions+=("$f has access to the D-Bus system bus To remove it use Flatseal or run: \$ flatpak override -u --nosocket=system-bus $f") fi if ! hasPermission "$permissions" "LD_PRELOAD" .*"/libhardened_malloc.so"; then status="$STATUS_FAILURE"