summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorSebastian Benoit <benno@cvs.openbsd.org>2017-01-21 08:45:53 +0000
committerSebastian Benoit <benno@cvs.openbsd.org>2017-01-21 08:45:53 +0000
commit59e0a50ed107de9adf2704718fd9025fd361d321 (patch)
tree47215198fc113f3dc66e1c2684ce68e4e04ed870 /usr.sbin
parent6ab6ab0cfc22a2956d5cf8524944b7bedb8e5528 (diff)
acme-client use configuration file [4 of 5]
fix getopt() ok florian
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 59202ecbac2..91b0aed71e5 100644
--- a/usr.sbin/acme-client/main.c
+++ b/usr.sbin/acme-client/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.17 2017/01/21 08:44:35 benno Exp $ */
+/* $Id: main.c,v 1.18 2017/01/21 08:45:52 benno Exp $ */
/*
* Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -54,7 +54,7 @@ main(int argc, char *argv[])
struct domain_c *domain = NULL;
struct altname_c *ac;
- while (-1 != (c = getopt(argc, argv, "bFnNrvf:")))
+ while (-1 != (c = getopt(argc, argv, "bFADrvf:")))
switch (c) {
case 'b':
backup = 1;