allow spaces in $sendmail_flags.

This commit is contained in:
Rich Murphey 1993-11-30 16:59:27 +00:00
parent b4afc64b0b
commit 0da22b8b69
1 changed files with 2 additions and 2 deletions

4
etc/rc
View File

@ -1,5 +1,5 @@
#!/bin/sh
# $Id: rc,v 1.5 1993/11/24 05:17:14 rich Exp $
# $Id: rc,v 1.6 1993/11/25 13:23:46 davidg Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@ -169,7 +169,7 @@ fi
# $sendmail_flags is imported from /etc/netstart;
# if $sendmail_flags is something other than NO, sendmail is run.
if [ X${sendmail_flags} = X"NO" -a -r /etc/sendmail.cf ]; then
if [ X"${sendmail_flags}" = X"NO" -a -r /etc/sendmail.cf ]; then
echo -n ' sendmail'; sendmail ${sendmail_flags}
fi