Skip to content
Commit 6298ed8b authored by Carlos Santos's avatar Carlos Santos Committed by Thomas Petazzoni
Browse files

eudev: fix printf usage in init script



Using a variable in a printf format string may lead to undesirable
results if the variable contains format controls, so replace

    printf "foo $var bar"

by

    printf "foo %s bar" "$var"

Signed-off-by: default avatarCarlos Santos <casantos@datacom.ind.br>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 3f568fe0
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment