From: benno Date: Fri, 3 Aug 2018 17:49:57 +0000 (+0000) Subject: correct an error message, from Ross L Richardson X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=4adf5313f2274f7b207a122024b216dfc2b87556;p=openbsd correct an error message, from Ross L Richardson ok millert@ --- 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 @@ -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)