summaryrefslogtreecommitdiffstats
path: root/usr.sbin/acme-client
diff options
context:
space:
mode:
authorsthen <sthen@openbsd.org>2020-05-16 20:19:23 +0000
committersthen <sthen@openbsd.org>2020-05-16 20:19:23 +0000
commitd0ea1cfc6c6a4fda775292c828fbdd45151f9f6c (patch)
treef374a0304ef7cad433d78b5b56a40d1a2f3bae3d /usr.sbin/acme-client
parententropy_add_ptr and entropy_input_rotate are only used inside (diff)
downloadwireguard-openbsd-d0ea1cfc6c6a4fda775292c828fbdd45151f9f6c.tar.xz
wireguard-openbsd-d0ea1cfc6c6a4fda775292c828fbdd45151f9f6c.zip
somehow yacc pieces got missed from the "domain name" commit; add them.
ok florian@
Diffstat (limited to 'usr.sbin/acme-client')
-rw-r--r--usr.sbin/acme-client/parse.y5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/acme-client/parse.y b/usr.sbin/acme-client/parse.y
index 873d73d8e00..120f253a63f 100644
--- a/usr.sbin/acme-client/parse.y
+++ b/usr.sbin/acme-client/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.40 2020/05/10 12:06:18 benno Exp $ */
+/* $OpenBSD: parse.y,v 1.41 2020/05/16 20:19:23 sthen Exp $ */
/*
* Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -101,7 +101,7 @@ typedef struct {
%}
%token AUTHORITY URL API ACCOUNT
-%token DOMAIN ALTERNATIVE NAMES CERT FULL CHAIN KEY SIGN WITH CHALLENGEDIR
+%token DOMAIN ALTERNATIVE NAME NAMES CERT FULL CHAIN KEY SIGN WITH CHALLENGEDIR
%token YES NO
%token INCLUDE
%token ERROR
@@ -457,6 +457,7 @@ lookup(char *s)
{"full", FULL},
{"include", INCLUDE},
{"key", KEY},
+ {"name", NAME},
{"names", NAMES},
{"rsa", RSA},
{"sign", SIGN},