summaryrefslogtreecommitdiff
path: root/usr.sbin/acme-client/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/acme-client/parse.y')
-rw-r--r--usr.sbin/acme-client/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/acme-client/parse.y b/usr.sbin/acme-client/parse.y
index 8125ea58e07..eb9480bd74d 100644
--- a/usr.sbin/acme-client/parse.y
+++ b/usr.sbin/acme-client/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.26 2018/07/29 12:46:31 deraadt Exp $ */
+/* $OpenBSD: parse.y,v 1.27 2018/08/03 17:49:57 benno Exp $ */
/*
* Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -311,7 +311,7 @@ domainoptsl : ALTERNATIVE NAMES '{' altname_l '}'
| DOMAIN FULL CHAIN CERT STRING {
char *s;
if (domain->fullchain != NULL) {
- yyerror("duplicate chain");
+ yyerror("duplicate full chain");
YYERROR;
}
if ((s = strdup($5)) == NULL)