mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
tools: bpftool: fix completion for "bpftool map update"
When trying to complete "bpftool map update" commands, the call to printf would print an error message that would show on the command line if no map is found to complete the command line. Fix it by making sure we have map ids to complete the line with, before we try to print something. Signed-off-by: Quentin Monnet <quentin.monnet@netronome.com> Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
This commit is contained in:
parent
06ee9da6a8
commit
fe8ecccc10
@ -143,7 +143,7 @@ _bpftool_map_update_map_type()
|
||||
local type
|
||||
type=$(bpftool -jp map show $keyword $ref | \
|
||||
command sed -n 's/.*"type": "\(.*\)",$/\1/p')
|
||||
printf $type
|
||||
[[ -n $type ]] && printf $type
|
||||
}
|
||||
|
||||
_bpftool_map_update_get_id()
|
||||
|
Loading…
Reference in New Issue
Block a user