svn commit: r309982 - head/usr.sbin/bsdinstall/scripts

Devin Teske dteske at FreeBSD.org
Tue Dec 13 02:16:01 UTC 2016


Author: dteske
Date: Tue Dec 13 02:16:00 2016
New Revision: 309982
URL: https://svnweb.freebsd.org/changeset/base/309982

Log:
  Remove unnecessary quotes

Modified:
  head/usr.sbin/bsdinstall/scripts/wlanconfig

Modified: head/usr.sbin/bsdinstall/scripts/wlanconfig
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/wlanconfig	Tue Dec 13 02:15:36 2016	(r309981)
+++ head/usr.sbin/bsdinstall/scripts/wlanconfig	Tue Dec 13 02:16:00 2016	(r309982)
@@ -280,7 +280,7 @@ done
 [ "$ENCRYPTION" ] || ENCRYPTION=$( echo "$NETWORKS" |
 	awk -F '\t' "/^\"$NETWORK\"\t/ { print \$2 }" )
 
-if echo "$ENCRYPTION" | grep -q 'PSK'; then
+if echo "$ENCRYPTION" | grep -q PSK; then
 	PASS=$( $DIALOG \
 		--title "WPA Setup"              \
 		--backtitle "$DIALOG_BACKTITLE"  \


More information about the svn-src-all mailing list