diff options
Diffstat (limited to 'usr.sbin/smtpd/parse.y')
-rw-r--r-- | usr.sbin/smtpd/parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/parse.y b/usr.sbin/smtpd/parse.y index 8608d86e270..90d3ce7b226 100644 --- a/usr.sbin/smtpd/parse.y +++ b/usr.sbin/smtpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.28 2009/03/16 23:26:40 gilles Exp $ */ +/* $OpenBSD: parse.y,v 1.29 2009/03/19 00:40:34 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -244,9 +244,9 @@ main : QUEUE INTERVAL interval { if ($5 == 0) { if ($1) - $5 = 487; + $5 = htons(465); else - $5 = 25; + $5 = htons(25); } cert = ($6 != NULL) ? $6 : $4; |