summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/smtpd/parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/parse.y b/usr.sbin/smtpd/parse.y
index 4801d14f3f2..2fff100ed93 100644
--- a/usr.sbin/smtpd/parse.y
+++ b/usr.sbin/smtpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.262 2019/09/20 17:46:05 gilles Exp $ */
+/* $OpenBSD: parse.y,v 1.263 2019/09/22 11:49:53 semarie Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -542,8 +542,8 @@ srs:
SRS KEY STRING {
conf->sc_srs_key = $3;
}
-SRS KEY BACKUP STRING {
- conf->sc_srs_key_backup = $3;
+| SRS KEY BACKUP STRING {
+ conf->sc_srs_key_backup = $4;
}
| SRS TTL STRING {
conf->sc_srs_ttl = delaytonum($3);