aboutsummaryrefslogtreecommitdiffstats
path: root/lacme
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2016-12-03 17:00:06 +0100
committerGuilhem Moulin <guilhem@fripost.org>2016-12-03 17:00:23 +0100
commit807f56024225a02963792bd97ded87a6094ef7eb (patch)
tree4f4698a31472cc7f08e47b61ad3fafdd4eaa5ffd /lacme
parent43670c2dc73148babfd8790070fc24982a71fd82 (diff)
s/--fdopen/--fd-conn/
Diffstat (limited to 'lacme')
-rwxr-xr-xlacme2
1 files changed, 1 insertions, 1 deletions
diff --git a/lacme b/lacme
index edcc77e..03ce556 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}, '--fdopen='.fileno($s));
+ my @cmd = ($accountd->{command}, '--fd-conn='.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';