From: Christian Goeschel Ndjomouo Date: Fri, 31 Oct 2025 17:18:58 +0000 (-0400) Subject: bash-completion: (setsid) add missing --fork X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=378c96795598ebda2d28ff4c2725ece1bd7e0ed7;p=thirdparty%2Futil-linux.git bash-completion: (setsid) add missing --fork Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/bash-completion/setsid b/bash-completion/setsid index 955ec27c0..bf22477cf 100644 --- a/bash-completion/setsid +++ b/bash-completion/setsid @@ -11,7 +11,7 @@ _setsid_module() esac case $cur in -*) - OPTS="--ctty --wait --help --version" + OPTS="--ctty --wait --fork --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;;