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

Devin Teske dteske at FreeBSD.org
Fri Oct 26 01:57:33 UTC 2018


Author: dteske
Date: Fri Oct 26 01:57:32 2018
New Revision: 339759
URL: https://svnweb.freebsd.org/changeset/base/339759

Log:
  Whitespace alignment in bsdinstall hostname
  
  Aligning line-continuation characters to prevent mistakes.
  This is also the prevalent style replication throughout.
  
  Sponsored by:	Smule, Inc.

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

Modified: head/usr.sbin/bsdinstall/scripts/hostname
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/hostname	Fri Oct 26 01:47:52 2018	(r339758)
+++ head/usr.sbin/bsdinstall/scripts/hostname	Fri Oct 26 01:57:32 2018	(r339759)
@@ -79,13 +79,13 @@ dialog_hostname()
 		"$DIALOG_TITLE" "$DIALOG_BACKTITLE" "$prompt" "$value" "$hline"
 
 	$DIALOG \
-		--title "$DIALOG_TITLE" \
+		--title "$DIALOG_TITLE"         \
 		--backtitle "$DIALOG_BACKTITLE" \
-		--hline "$hline" \
-		--ok-label "$msg_ok" \
-		--no-cancel \
-		--inputbox "$prompt" \
-		$height $width "$value" \
+		--hline "$hline"                \
+		--ok-label "$msg_ok"            \
+		--no-cancel                     \
+		--inputbox "$prompt"            \
+		$height $width "$value"         \
 		2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
 }
 


More information about the svn-src-head mailing list