diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-03-30 16:59:26 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-03-30 16:59:26 +0000 |
commit | 872bcade581260fe67a00ae347b79ada71153428 (patch) | |
tree | db964b721ecfdfd0afa38ff65465739351aa10ea /etc | |
parent | 0ccf221b83339fcde130008ba0c5306f679fddf7 (diff) |
Allow spamd_flags banner to contain spaces. Resolves PR 3720.
ok beck@ millert@
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.241 2004/03/22 15:02:35 cedric Exp $ +# $OpenBSD: rc,v 1.242 2004/03/30 16:59:25 otto Exp $ # System startup script run by init on autoboot # or after single-user. @@ -537,7 +537,7 @@ if [ "X${spamd_flags}" != X"NO" ]; then if [ "X${spamd_grey}" != X"NO" ]; then spamd_flags="${spamd_flags} -g" fi - echo -n ' spamd'; /usr/libexec/spamd ${spamd_flags} + echo -n ' spamd'; eval /usr/libexec/spamd ${spamd_flags} /usr/libexec/spamd-setup if [ "X${spamd_grey}" != X"NO" ]; then echo -n ' spamlogd' |