summaryrefslogtreecommitdiffstats
path: root/etc/rc
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1993-12-21 02:58:15 +0000
committerache <ache@FreeBSD.org>1993-12-21 02:58:15 +0000
commitd9eaeb306d5e016e58a92247369780ed3b1704de (patch)
tree9c104865d5a688b9ec9435e7446561d9cf524cb5 /etc/rc
parente2d77e770b76dd33ddfe70c79e80434ef54d6e8f (diff)
downloadFreeBSD-src-d9eaeb306d5e016e58a92247369780ed3b1704de.zip
FreeBSD-src-d9eaeb306d5e016e58a92247369780ed3b1704de.tar.gz
Fix sendmail_flags, long ago it was imported from /etc/netstart
with this bug.
Diffstat (limited to 'etc/rc')
-rw-r--r--etc/rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc b/etc/rc
index 33f5579..4e2cee7 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: rc,v 1.8 1993/12/13 08:28:03 davidg Exp $
+# $Id: rc,v 1.9 1993/12/17 04:20:30 ache Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@@ -175,7 +175,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
OpenPOWER on IntegriCloud