diff options
author | grant <grant> | 2002-06-22 15:48:00 +0000 |
---|---|---|
committer | grant <grant> | 2002-06-22 15:48:00 +0000 |
commit | 58a4cc8e86ac8217df01ed2f168b7a4e46866cce (patch) | |
tree | db31d731ee97455350a1ab6cf51ae70c88b774b7 /mail | |
parent | b1d630bf0421a01c9be9ac4a3ddd4e32fd8dad66 (diff) | |
download | pkgsrc-58a4cc8e86ac8217df01ed2f168b7a4e46866cce.tar.gz |
use 'env -i' rather than 'env -', as this is deprecated according to
env(1), and it does not work with the new getopt(3).
provided by Julio Merino <jmmv at hispabsd dot org> in pkg/17361.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/courier-auth/files/authdaemond.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/courier-auth/files/authdaemond.sh b/mail/courier-auth/files/authdaemond.sh index f5e0798b431..ac9c34e94db 100644 --- a/mail/courier-auth/files/authdaemond.sh +++ b/mail/courier-auth/files/authdaemond.sh @@ -1,6 +1,6 @@ #! /bin/sh # -# $NetBSD: authdaemond.sh,v 1.3 2002/02/05 06:04:37 jlam Exp $ +# $NetBSD: authdaemond.sh,v 1.4 2002/06/22 15:48:00 grant Exp $ # # Courier user authentication daemon # @@ -48,7 +48,7 @@ courier_doit() stop) echo "Stopping ${name}." ;; esac - @SETENV@ - ${daemon} ${action} + @SETENV@ -i ${daemon} ${action} } if [ -f /etc/rc.subr ] |