From 5c2ade67a2461fd34c63b8721ab34ee1edb3da7b Mon Sep 17 00:00:00 2001 From: Artem Bityutskiy Date: Wed, 5 Feb 2014 16:19:11 +0200 Subject: [PATCH] email-lda: remove a piece of bashism Remove the '==' operator and use the '=' instead. Otherwise 'dash' fails. Signed-off-by: Artem Bityutskiy --- email/aiaiai-email-lda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/email/aiaiai-email-lda b/email/aiaiai-email-lda index 2f75c3e..83a687b 100755 --- a/email/aiaiai-email-lda +++ b/email/aiaiai-email-lda @@ -103,7 +103,7 @@ reject_and_reply() verbose "Project \"$prj\"" parse_prj_config "$cfgfile" "$prj" - if [ -n "$pcfg_name" ] && [ "$pcfg_reply_to_all" == "1" ]; then + if [ -n "$pcfg_name" ] && [ "$pcfg_reply_to_all" = "1" ]; then # Strip own address to=$(strip_address "$to" "$cfg_ownmail") else -- 2.49.0