aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/parse.y
diff options
context:
space:
mode:
authorEric Faurot <eric@faurot.net>2013-05-03 11:27:16 +0200
committerEric Faurot <eric@faurot.net>2013-05-03 11:27:16 +0200
commit27b72624b3aca1f6d77438b2d16000611692d245 (patch)
treeebc4b5f207cfa0f626b48c91f72ec8b4dda5897f /smtpd/parse.y
parentrealpath() require destination buffer to be at least PATH_MAX. (diff)
downloadOpenSMTPD-27b72624b3aca1f6d77438b2d16000611692d245.tar.xz
OpenSMTPD-27b72624b3aca1f6d77438b2d16000611692d245.zip
fix typo in reject rule parsing
Diffstat (limited to '')
-rw-r--r--smtpd/parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/smtpd/parse.y b/smtpd/parse.y
index 132846be..a5fbc0ef 100644
--- a/smtpd/parse.y
+++ b/smtpd/parse.y
@@ -905,7 +905,7 @@ rule : ACCEPT {
} tagged from sender FOR destination usermapping {
rule->r_decision = R_REJECT;
rule->r_sources = $4;
- rule->r_sources = $5;
+ rule->r_senders = $5;
rule->r_destination = $7;
rule->r_mapping = $8;
if ($3) {