-/* $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 <kristaps@bsd.lv>
| 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;
}