Browse Source

Put _rc_err argument under quotes to respect the syntax we are passing.

OPENBSD_5_7
ajacoutot 10 years ago
parent
commit
319900ebf3
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/etc/rc.d/rc.subr

+ 2
- 2
src/etc/rc.d/rc.subr View File

@ -1,4 +1,4 @@
# $OpenBSD: rc.subr,v 1.87 2014/08/24 17:15:24 ajacoutot Exp $
# $OpenBSD: rc.subr,v 1.88 2014/08/25 07:34:12 ajacoutot Exp $
#
# Copyright (c) 2010, 2011, 2014 Antoine Jacoutot <ajacoutot@openbsd.org>
# Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
@ -20,7 +20,7 @@
# Default functions and variables used by rc.d(8) scripts.
_rc_err() {
echo $1 1>&2
echo "$1" 1>&2
exit 1
}


Loading…
Cancel
Save