Skip to content

Commit feb2a8e

Browse files
committed
resolvconf: Remove an accidental bashism
Fixes #36 thanks to Andrea Manzini
1 parent 0c0d864 commit feb2a8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resolvconf.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ list_keys() {
592592
if [ -f "$i" ]; then
593593
cd "$KEYDIR"
594594
for ii in $inclusive_keys; do
595-
if [ -f "$ii" ] && [ "${i#* }" == "$ii" ]; then
595+
if [ -f "$ii" ] && [ "${i#* }" = "$ii" ]; then
596596
continue 2
597597
fi
598598
done

0 commit comments

Comments
 (0)