svn commit: r287803 - head/usr.sbin/bsdconfig/share

Devin Teske dteske at FreeBSD.org
Mon Sep 14 21:26:49 UTC 2015


Author: dteske
Date: Mon Sep 14 21:26:48 2015
New Revision: 287803
URL: https://svnweb.freebsd.org/changeset/base/287803

Log:
  Fix code typo (no functional change)
  
  MFC after:	3 days
  X-MFC-to:	stable/10

Modified:
  head/usr.sbin/bsdconfig/share/common.subr

Modified: head/usr.sbin/bsdconfig/share/common.subr
==============================================================================
--- head/usr.sbin/bsdconfig/share/common.subr	Mon Sep 14 19:37:51 2015	(r287802)
+++ head/usr.sbin/bsdconfig/share/common.subr	Mon Sep 14 21:26:48 2015	(r287803)
@@ -1,7 +1,7 @@
 if [ ! "$_COMMON_SUBR" ]; then _COMMON_SUBR=1
 #
 # Copyright (c) 2012 Ron McDowell
-# Copyright (c) 2012-2014 Devin Teske
+# Copyright (c) 2012-2015 Devin Teske
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
@@ -33,8 +33,8 @@ if [ ! "$_COMMON_SUBR" ]; then _COMMON_S
 # Default file descriptors to link to stdout/stderr for passthru allowing
 # redirection within a sub-shell to bypass directly to the terminal.
 #
-: ${TERMINAL_STDOUT_PASSTHRU:=3}}
-: ${TERMINAL_STDERR_PASSTHRU:=4}}
+: ${TERMINAL_STDOUT_PASSTHRU:=3}
+: ${TERMINAL_STDERR_PASSTHRU:=4}
 
 ############################################################ GLOBALS
 


More information about the svn-src-head mailing list