diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-06-14 01:12:08 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-06-14 01:12:08 +0200 |
commit | efde1af7077cff081a3dd9cb28b5896e6e9ed25a (patch) | |
tree | 4657dc076b8844a9e8960789177bb9cd584e3599 /client | |
parent | 76b9e800da0c7dd88a55fa9dac153c513e6e7748 (diff) | |
parent | c0849fb8b99216e9b2e20132296253f1ee905193 (diff) |
Merge branch 'master' into debian
Diffstat (limited to 'client')
-rwxr-xr-x | client | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -24,9 +24,9 @@ use warnings; # Usage: client COMMAND CONFIG_FD SOCKET_FD [ARGUMENTS] # # fdopen(3) the file descriptor SOCKET_FD (corresponding to the -# listening letsencrypt-accountd socket), connect(2) to it to retrieve -# the account key's public parameters and later send data to be signed -# by the master component (using the account key). +# listening lacme-accountd socket), connect(2) to it to retrieve the +# account key's public parameters and later send data to be signed by +# the master component (using the account key). # # CONFIG_FD is a read-only file descriptor associated with the # configuration file at pos 0. (This is needed since this process @@ -66,7 +66,7 @@ open my $S, '+<&=', $1 or die "fdopen $1: $!"; ############################################################################# # Read the protocol version and JSON Web Key (RFC 7517) from the -# letsencrypt-accountd socket +# lacme-accountd socket # die "Error: Invalid client version\n" unless $S->getline() =~ /\A(\d+) OK(?:.*)\r\n\z/ and $1 == $PROTOCOL_VERSION; |