summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2014-02-05 16:19:11 +0200
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2014-02-05 17:12:12 +0200
commit5c2ade67a2461fd34c63b8721ab34ee1edb3da7b (patch)
treeb9b5bd3f4a76bc085f9a98c0d4df299d7e88d38a
parentcb9fa195154fb4e1732892131766278fdb028a1a (diff)
downloadaiaiai-5c2ade67a2461fd34c63b8721ab34ee1edb3da7b.tar.gz
email-lda: remove a piece of bashism
Remove the '==' operator and use the '=' instead. Otherwise 'dash' fails. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
-rwxr-xr-xemail/aiaiai-email-lda2
1 files changed, 1 insertions, 1 deletions
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