From: Mike Frysinger Date: Fri, 13 Sep 2013 00:49:04 +0000 (-0400) Subject: bash-completion: fix typos in mkfs.bfs logic X-Git-Tag: v2.24-rc1~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86cfa193ad7c56ba82199e35faeee696b4561313;p=thirdparty%2Futil-linux.git bash-completion: fix typos in mkfs.bfs logic There is no "bfs" command. Change this file to match the other mkfs files where we have a "mkfs." prefix. Reported-by: Michał Górny Signed-off-by: Mike Frysinger --- diff --git a/bash-completion/mkfs.bfs b/bash-completion/mkfs.bfs index 8adbc60847..4f2923d4fa 100644 --- a/bash-completion/mkfs.bfs +++ b/bash-completion/mkfs.bfs @@ -1,4 +1,4 @@ -_bfs_module() +_mkfs.bfs_module() { local cur prev OPTS DEVS COMPREPLY=() @@ -28,4 +28,4 @@ _bfs_module() COMPREPLY=( $(compgen -W "$DEVS /path/to/file" -- $cur) ) return 0 } -complete -F _bfs_module bfs +complete -F _mkfs.bfs_module mkfs.bfs