aboutsummaryrefslogtreecommitdiff
path: root/security/cyrus-sasl
diff options
context:
space:
mode:
authorAnders Nordby <anders@FreeBSD.org>2002-08-14 00:14:07 +0000
committerAnders Nordby <anders@FreeBSD.org>2002-08-14 00:14:07 +0000
commite2cd1247176376b58e8acf1f93c722c24604e6fe (patch)
treeff4bf125482f0b2c6b42821b5c9a47ffef380b71 /security/cyrus-sasl
parent8e92340f89af61a862a7618c6b57cb32eec69f22 (diff)
downloadports-e2cd1247176376b58e8acf1f93c722c24604e6fe.tar.gz
ports-e2cd1247176376b58e8acf1f93c722c24604e6fe.zip
Fix startup-scripts for -current /bin/sh issues.
Notes
Notes: svn path=/head/; revision=64482
Diffstat (limited to 'security/cyrus-sasl')
-rw-r--r--security/cyrus-sasl/files/pwcheck.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/security/cyrus-sasl/files/pwcheck.sh b/security/cyrus-sasl/files/pwcheck.sh
index 3f4c903817a2..faca0910847b 100644
--- a/security/cyrus-sasl/files/pwcheck.sh
+++ b/security/cyrus-sasl/files/pwcheck.sh
@@ -41,7 +41,8 @@ case "${sasl_pwcheck_enable}" in
start)
if [ -x ${sasl_pwcheck_program} ] ; then
- ${sasl_pwcheck_program} & && echo -n " pwcheck"
+ ${sasl_pwcheck_program} &
+ echo -n " pwcheck"
fi
;;