[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[PATCH] Remove extra ellipses



log_begin_msg already puts ... at the end of the stuff it prints, so no
need to have it in there explicitly.

Signed-off-by: martin f. krafft <madduck@debian.org>
---
 init          |    4 ++--
 scripts/local |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/init b/init
index 885f240..4c72eab 100755
--- a/init
+++ b/init
@@ -157,7 +157,7 @@ maybe_break top
 run_scripts /scripts/init-top
 
 maybe_break modules
-log_begin_msg "Loading essential drivers..."
+log_begin_msg "Loading essential drivers"
 load_modules
 log_end_msg
 
@@ -167,7 +167,7 @@ run_scripts /scripts/init-premount
 [ "$quiet" != "y" ] && log_end_msg
 
 maybe_break mount
-log_begin_msg "Mounting root file system..."
+log_begin_msg "Mounting root file system"
 . /scripts/${BOOT}
 parse_numeric ${ROOT}
 mountroot
diff --git a/scripts/local b/scripts/local
index b55212e..d28917b 100644
--- a/scripts/local
+++ b/scripts/local
@@ -34,7 +34,7 @@ mountroot ()
 	# If the root device hasn't shown up yet, give it a little while
 	# to deal with removable devices
 	if [ ! -e "${ROOT}" ] || ! $(get_fstype "${ROOT}" >/dev/null); then
-		log_begin_msg "Waiting for root file system..."
+		log_begin_msg "Waiting for root file system"
 
 		# Default delay is 180s
 		if [ -z "${ROOTDELAY}" ]; then
-- 
1.5.6


Reply to: