aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rwxr-xr-xclient8
1 files changed, 4 insertions, 4 deletions
diff --git a/client b/client
index 70150ca..409fc62 100755
--- a/client
+++ b/client
@@ -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;