From 46203dad2c14aba713c6756f10e27dc1ba42c3e1 Mon Sep 17 00:00:00 2001 From: benno Date: Fri, 3 Aug 2018 17:51:40 +0000 Subject: [PATCH] fix error messages from earlier syntax change From Ross L Richardson ok millert@ --- usr.sbin/acme-client/parse.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.20.1