aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/parser.c
diff options
context:
space:
mode:
authorEric Faurot <eric@faurot.net>2013-12-06 15:05:38 +0100
committerEric Faurot <eric@faurot.net>2013-12-06 15:05:38 +0100
commit4bf753de68608f76155f61f658656de08d073c8b (patch)
treef84e7496f950fb06a2aee4254d5f8c87d1044003 /smtpd/parser.c
parentmissing dict_init() (diff)
downloadOpenSMTPD-4bf753de68608f76155f61f658656de08d073c8b.tar.xz
OpenSMTPD-4bf753de68608f76155f61f658656de08d073c8b.zip
fix smtpctl resume route
Diffstat (limited to 'smtpd/parser.c')
-rw-r--r--smtpd/parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smtpd/parser.c b/smtpd/parser.c
index 56c356bb..5f38ab16 100644
--- a/smtpd/parser.c
+++ b/smtpd/parser.c
@@ -159,7 +159,7 @@ cmd_check(const char *str, struct node *node, struct parameter *res)
return (1);
case P_ROUTEID:
- res->u.u_int = strtonum(str, 1, LLONG_MAX, &e);
+ res->u.u_routeid = strtonum(str, 1, LLONG_MAX, &e);
if (e)
return (0);
return (1);