aboutsummaryrefslogtreecommitdiffstats
path: root/lacme
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2016-12-05 16:22:59 +0100
committerGuilhem Moulin <guilhem@fripost.org>2016-12-05 16:23:07 +0100
commit1d1072ac291b1a086d4b15cd611cb74e41667115 (patch)
treec61a5bc358ada315393d62766e1ce813fb65181a /lacme
parentc18ca98345ba54462a3199679f15c80da0634eef (diff)
s/fd-conn/conn-fd/
Diffstat (limited to 'lacme')
-rwxr-xr-xlacme2
1 files changed, 1 insertions, 1 deletions
diff --git a/lacme b/lacme
index 03ce556..86071fd 100755
--- a/lacme
+++ b/lacme
@@ -408,7 +408,7 @@ sub acme_client($@) {
drop_privileges($accountd->{user}, $accountd->{group}, '/');
set_FD_CLOEXEC($s, 0);
$client->close() or die "Can't close: $!";
- my @cmd = ($accountd->{command}, '--fd-conn='.fileno($s));
+ my @cmd = ($accountd->{command}, '--conn-fd='.fileno($s));
push @cmd, '--config='.$accountd->{config} if defined $accountd->{config};
push @cmd, '--privkey='.$accountd->{privkey} if defined $accountd->{privkey};
push @cmd, '--quiet' unless lc $accountd->{quiet} eq 'no';