aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/parser.c
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2013-12-06 15:06:40 +0100
committerGilles Chehade <gilles@poolp.org>2013-12-06 15:06:40 +0100
commit2e938a56c54366a0117ef9b857dfae56de66b3cb (patch)
treea5c86d6ba79418f55e2d5bc3d18826e0b899d896 /smtpd/parser.c
parentreorder (diff)
parentfix smtpctl resume route (diff)
downloadOpenSMTPD-2e938a56c54366a0117ef9b857dfae56de66b3cb.tar.xz
OpenSMTPD-2e938a56c54366a0117ef9b857dfae56de66b3cb.zip
Merge branch 'master' into portable
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 bd4ba7f5..39dd7713 100644
--- a/smtpd/parser.c
+++ b/smtpd/parser.c
@@ -161,7 +161,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);