From: benno Date: Fri, 3 Aug 2018 17:51:40 +0000 (+0000) Subject: fix error messages from earlier syntax change X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=46203dad2c14aba713c6756f10e27dc1ba42c3e1;p=openbsd fix error messages from earlier syntax change From Ross L Richardson ok millert@ --- diff --git a/usr.sbin/acme-client/parse.y b/usr.sbin/acme-client/parse.y index eb9480bd74d..172b5fbe47f 100644 --- a/usr.sbin/acme-client/parse.y +++ b/usr.sbin/acme-client/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.27 2018/08/03 17:49:57 benno Exp $ */ +/* $OpenBSD: parse.y,v 1.28 2018/08/03 17:51:40 benno Exp $ */ /* * Copyright (c) 2016 Kristaps Dzonsons @@ -326,13 +326,13 @@ domainoptsl : ALTERNATIVE NAMES '{' altname_l '}' | SIGN WITH STRING { char *s; if (domain->auth != NULL) { - yyerror("duplicate use"); + yyerror("duplicate sign with"); YYERROR; } if ((s = strdup($3)) == NULL) err(EXIT_FAILURE, "strdup"); if (authority_find(conf, s) == NULL) { - yyerror("use: unknown authority"); + yyerror("sign with: unknown authority"); free(s); YYERROR; }