Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Sep 2015 21:26:49 +0000 (UTC)
From:      Devin Teske <dteske@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287803 - head/usr.sbin/bsdconfig/share
Message-ID:  <201509142126.t8ELQna9079406@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509142126.t8ELQna9079406>