aboutsummaryrefslogtreecommitdiffstats
path: root/lacme-accountd
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2021-02-21 17:34:51 +0100
committerGuilhem Moulin <guilhem@fripost.org>2021-02-21 19:41:37 +0100
commitd56b957dbae6c8214d50ce88d0ea04eb4654b843 (patch)
tree7ea3c680d45013a16d582b0d627f42c77ffd8d8a /lacme-accountd
parent594c32ac58167396980a404261047e94155a83d3 (diff)
wording
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);