summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2017-01-21 08:48:12 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2017-01-21 08:48:12 +0000
commit50ab8b0b9043144ddc5155d75d19d553adf2e34b (patch)
tree2daa265cff9c7f1033404330cceef35d3566c4e9 /usr.sbin
parentffda170c27e872cb3c93de63042205bd5590468f (diff)
typo; ok benno
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/acme-client/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/acme-client/main.c b/usr.sbin/acme-client/main.c
index e321a538a69..790e4956259 100644
--- a/usr.sbin/acme-client/main.c
+++ b/usr.sbin/acme-client/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.19 2017/01/21 08:47:21 benno Exp $ */
+/* $Id: main.c,v 1.20 2017/01/21 08:48:11 florian Exp $ */
/*
* Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -162,7 +162,7 @@ main(int argc, char *argv[])
}
if (!(popts & ACME_OPT_NEWDKEY) && -1 == access(domain->key, R_OK)) {
- warnx("%s: -k file must exist", domain->key);
+ warnx("%s: domain key file must exist", domain->key);
ne++;
} else if ((popts & ACME_OPT_NEWDKEY) && -1 != access(domain->key, R_OK)) {
dodbg("%s: domain key exists (not creating)", domain->key);