artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b50a58
)
correct an error message, from Ross L Richardson
author
benno
<benno@openbsd.org>
Fri, 3 Aug 2018 17:49:57 +0000
(17:49 +0000)
committer
benno
<benno@openbsd.org>
Fri, 3 Aug 2018 17:49:57 +0000
(17:49 +0000)
ok millert@
usr.sbin/acme-client/parse.y
patch
|
blob
|
history
diff --git
a/usr.sbin/acme-client/parse.y
b/usr.sbin/acme-client/parse.y
index
8125ea5
..
eb9480b
100644
(file)
--- a/
usr.sbin/acme-client/parse.y
+++ b/
usr.sbin/acme-client/parse.y
@@
-1,4
+1,4
@@
-/* $OpenBSD: parse.y,v 1.2
6 2018/07/29 12:46:31 deraadt
Exp $ */
+/* $OpenBSD: parse.y,v 1.2
7 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)