Author: dteske Date: Mon Dec 12 21:18:24 2016 New Revision: 309947 URL: https://svnweb.freebsd.org/changeset/base/309947
Log: Remove unnecessary semi-colons Modified: head/usr.sbin/bsdinstall/scripts/wlanconfig Modified: head/usr.sbin/bsdinstall/scripts/wlanconfig ============================================================================== --- head/usr.sbin/bsdinstall/scripts/wlanconfig Mon Dec 12 21:16:37 2016 (r309946) +++ head/usr.sbin/bsdinstall/scripts/wlanconfig Mon Dec 12 21:18:24 2016 (r309947) @@ -216,7 +216,7 @@ while :; do NETWORKS=$( echo "$SCAN_RESULTS" | awk -F '\t' ' /..:..:..:..:..:../ { if (length($5) > 0) - printf("\"%s\"\t%s\n", $5, $4); + printf("\"%s\"\t%s\n", $5, $4) } ' | sort | uniq ) @@ -273,7 +273,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 exec 3>&1 @@ -317,8 +317,8 @@ elif echo $ENCRYPTION | grep -q EAP; the scan_ssid=$SCANSSID key_mgmt=WPA-EAP$( echo "$USERPASS" | awk ' - NR == 1 { printf "\n\t\tidentity=\"%s\"", $1; } - NR == 2 { printf "\n\t\tpassword=\"%s\"", $1; } + NR == 1 { printf "\n\t\tidentity=\"%s\"", $1 } + NR == 2 { printf "\n\t\tpassword=\"%s\"", $1 } ' ) priority=5 } _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"