Fix bogon that made it impossible to stop innd.

This commit is contained in:
Dag-Erling Smørgrav 2000-09-24 20:19:44 +00:00
parent a10318dfa4
commit 23e2325e3c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=33071
2 changed files with 2 additions and 2 deletions

View file

@ -5,5 +5,5 @@ if [ $# -eq 0 -o x$1 = xstart ]; then
fi
fi
if [ x$1 = xstop ]; then
su -fm news -c !!PREFIX!!/news/bin/rc.news stop
su -fm news -c '!!PREFIX!!/news/bin/rc.news stop'
fi

View file

@ -5,5 +5,5 @@ if [ $# -eq 0 -o x$1 = xstart ]; then
fi
fi
if [ x$1 = xstop ]; then
su -fm news -c !!PREFIX!!/news/bin/rc.news stop
su -fm news -c '!!PREFIX!!/news/bin/rc.news stop'
fi