diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2018-08-03 17:49:58 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2018-08-03 17:49:58 +0000 |
commit | bbb615a4c0c9e9fd47fcec4ed84d2ad9036bb7e7 (patch) | |
tree | 7c776cc55bac18399a6ddcfd2bd521c6c1b0646d /usr.sbin | |
parent | 7a6243fc4b1842a4accc0f8846c1766b1047e245 (diff) |
correct an error message, from Ross L Richardson
ok millert@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/acme-client/parse.y | 4 |
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) |