aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xclient2
-rwxr-xr-xlacme-accountd4
-rwxr-xr-xwebserver2
3 files changed, 4 insertions, 4 deletions
diff --git a/client b/client
index 409fc62..810cd35 100755
--- a/client
+++ b/client
@@ -1,7 +1,7 @@
#!/usr/bin/perl -T
#----------------------------------------------------------------------
-# Let's Encrypt ACME client
+# ACME client
# Copyright © 2015,2016 Guilhem Moulin <guilhem@fripost.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/lacme-accountd b/lacme-accountd
index 2bc648f..704f836 100755
--- a/lacme-accountd
+++ b/lacme-accountd
@@ -148,7 +148,7 @@ do {
my $umask = umask(0177) // die "umask: $!";
- print STDERR "Starting Let's Encrypt Account Key Manager at $sockname\n" unless $OPTS{quiet};
+ print STDERR "Starting lacme Account Key Manager at $sockname\n" unless $OPTS{quiet};
socket(my $sock, PF_UNIX, SOCK_STREAM, 0) or die "socket: $!";
my $sockaddr = Socket::sockaddr_un($sockname) // die;
bind($sock, $sockaddr) or die "bind: $!";
@@ -195,7 +195,7 @@ END {
unlink $SOCKNAME or print STDERR "Can't unlink $SOCKNAME: $!\n";
}
if (defined $S) {
- print STDERR "Shutting down and closing Let's Encrypt Account Key Manager\n" unless $OPTS{quiet};
+ print STDERR "Shutting down and closing lacme Account Key Manager\n" unless $OPTS{quiet};
shutdown($S, SHUT_RDWR) or warn "shutdown: $!";
close $S or print STDERR "Can't close: $!\n";
}
diff --git a/webserver b/webserver
index 0fe2979..df4e3ba 100755
--- a/webserver
+++ b/webserver
@@ -1,7 +1,7 @@
#!/usr/bin/perl -T
#----------------------------------------------------------------------
-# Let's Encrypt ACME client (webserver component)
+# ACME client (webserver component)
# Copyright © 2015,2016 Guilhem Moulin <guilhem@fripost.org>
#
# This program is free software: you can redistribute it and/or modify