From d47492b8a80dd487f88c221a0bc9ab125bd10bd9 Mon Sep 17 00:00:00 2001 From: ajacoutot <> Date: Sun, 24 Aug 2014 13:30:27 +0000 Subject: [PATCH] Drop unused variables. --- src/etc/rc.d/rc.subr | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/etc/rc.d/rc.subr b/src/etc/rc.d/rc.subr index 7c419fd8..d279066d 100644 --- a/src/etc/rc.d/rc.subr +++ b/src/etc/rc.d/rc.subr @@ -1,4 +1,4 @@ -# $OpenBSD: rc.subr,v 1.84 2014/08/24 13:29:16 ajacoutot Exp $ +# $OpenBSD: rc.subr,v 1.85 2014/08/24 13:30:27 ajacoutot Exp $ # # Copyright (c) 2010, 2011, 2014 Antoine Jacoutot # Copyright (c) 2010, 2011 Ingo Schwarze @@ -114,7 +114,7 @@ _rc_quirks() { _rc_parse_conf() { typeset -l _key - local _conf _i _l _val + local _l _val set -A _allowed_keys -- \ spamd_black pf ipsec check_quotas accounting \ multicast_host multicast_router amd_master \ @@ -137,7 +137,6 @@ _rc_parse_conf() { # remove leading and trailing quotes (backwards compat) [[ $_val == @(\"*\"|\'*\') ]] && _val=${_val#?} _val=${_val%?} eval "${_key}=\${_val}" - _conf="${_conf} ${_key}" done < $_rcfile done