diff options
author | Alexander Hall <halex@cvs.openbsd.org> | 2012-07-10 15:00:03 +0000 |
---|---|---|
committer | Alexander Hall <halex@cvs.openbsd.org> | 2012-07-10 15:00:03 +0000 |
commit | 559d9d433c9fc87eebcc6df8d75e71da08bd3ca7 (patch) | |
tree | dfe76723d7cac837794364962bf6296c0d3b15ef /etc | |
parent | bb6e89e166a4363b4d488f7e272310ceace30bcc (diff) |
fix regexp in pexp
ok robert@
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.d/sendmail | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.d/sendmail b/etc/rc.d/sendmail index ab2805372d2..26f23bc53c6 100644 --- a/etc/rc.d/sendmail +++ b/etc/rc.d/sendmail @@ -1,12 +1,12 @@ #!/bin/sh # -# $OpenBSD: sendmail,v 1.5 2012/01/20 22:27:30 sthen Exp $ +# $OpenBSD: sendmail,v 1.6 2012/07/10 15:00:02 halex Exp $ daemon="/usr/sbin/sendmail" . /etc/rc.d/rc.subr -pexp="(sendmail: (accepting|rejecting).*|${daemon}* -(q[0-9]|bd)*)" +pexp="(sendmail: (accepting|rejecting).*|${daemon}.* -(q[0-9]|bd)*)" rc_bg=YES |