From 9a8032873ed2eb07ca9fb0d6afb028e7ae2353c8 Mon Sep 17 00:00:00 2001 From: reed Date: Tue, 28 Apr 2009 03:03:52 +0000 Subject: [PATCH] Get rid of extra space in Usage statement. --- etc/rc.subr | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/etc/rc.subr b/etc/rc.subr index aeb6db4d1885..9f188f932cf9 100644 --- a/etc/rc.subr +++ b/etc/rc.subr @@ -1,4 +1,4 @@ -# $NetBSD: rc.subr,v 1.74 2008/12/06 23:21:32 salo Exp $ +# $NetBSD: rc.subr,v 1.75 2009/04/28 03:03:52 reed Exp $ # # Copyright (c) 1997-2004 The NetBSD Foundation, Inc. # All rights reserved. @@ -424,7 +424,10 @@ run_rc_command() ;; esac - _keywords="start stop restart rcvar $extra_commands" + _keywords="start stop restart rcvar" + if [ -n "$extra_commands" ]; then + _keywords="${_keywords} ${extra_commands}" + fi rc_pid= _pidcmd= _procname=${procname:-${command}}