svn commit: r253118 - head/usr.sbin/bsdconfig/share
Devin Teske
dteske at FreeBSD.org
Tue Jul 9 22:01:06 UTC 2013
Author: dteske
Date: Tue Jul 9 22:01:05 2013
New Revision: 253118
URL: http://svnweb.freebsd.org/changeset/base/253118
Log:
Fix conditional (der should match the comment above it).
MFC after: 1 day
Modified:
head/usr.sbin/bsdconfig/share/dialog.subr
Modified: head/usr.sbin/bsdconfig/share/dialog.subr
==============================================================================
--- head/usr.sbin/bsdconfig/share/dialog.subr Tue Jul 9 21:53:57 2013 (r253117)
+++ head/usr.sbin/bsdconfig/share/dialog.subr Tue Jul 9 22:01:05 2013 (r253118)
@@ -2090,7 +2090,7 @@ f_dialog_init()
#
# Read ~/.dialogrc (unless using Xdialog(1)) for properties
#
- if [ -f ~/.dialogrc ]; then
+ if [ -f ~/.dialogrc -a ! "$USE_XDIALOG" ]; then
eval "$(
awk -v param=use_shadow -v expect=OFF \
-v set="NO_SHADOW=1" '
More information about the svn-src-all
mailing list