mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Neither printf (and as is commonly known) nor print need parens in awk
This commit is contained in:
parent
5943bcd19f
commit
be34885e2a
1 changed files with 1 additions and 1 deletions
|
|
@ -278,7 +278,7 @@ while :; do
|
|||
done
|
||||
|
||||
[ "$ENCRYPTION" ] || ENCRYPTION=$( echo "$NETWORKS" |
|
||||
awk -F '\t' "/^\"$NETWORK\"\t/ { printf(\"%s\n\", \\\$2 ) }" )
|
||||
awk -F '\t' "/^\"$NETWORK\"\t/ { printf \"%s\n\", \\\$2 }" )
|
||||
|
||||
if echo $ENCRYPTION | grep -q 'PSK'; then
|
||||
PASS=$( $DIALOG \
|
||||
|
|
|
|||
Loading…
Reference in a new issue