aboutsummaryrefslogtreecommitdiffstats
path: root/lacme-accountd
diff options
context:
space:
mode:
Diffstat (limited to 'lacme-accountd')
-rwxr-xr-xlacme-accountd4
1 files changed, 2 insertions, 2 deletions
diff --git a/lacme-accountd b/lacme-accountd
index 6a6e90d..0f0b0d9 100755
--- a/lacme-accountd
+++ b/lacme-accountd
@@ -105,7 +105,7 @@ sub spec_expand($) {
: $1 eq "T" ? env_fallback(TMPDIR => "/tmp")
: $1 eq "%" ? "%"
: error("\"$str\" has unknown specifier %$1");
- error("undefined expansion %$1 in \"$str\"") unless defined $x;
+ error("Undefined expansion %$1 in \"$str\"") unless defined $x;
$x;
#ge;
return $str;
@@ -178,7 +178,7 @@ if ($OPTS{privkey} =~ /\A(file|gpg):(\p{Print}+)\z/) {
$SIGN = sub($) { $rsa->sign($_[0]) };
}
else {
- error("unsupported method: $OPTS{privkey}");
+ error("Unsupported method: $OPTS{privkey}");
}
my $JWK_STR = JSON::->new->encode($JWK);