diff options
Diffstat (limited to 'client')
| -rwxr-xr-x | client | 9 | 
1 files changed, 4 insertions, 5 deletions
| @@ -52,7 +52,6 @@ use MIME::Base64 qw/encode_base64 encode_base64url/;  use Date::Parse ();  use LWP::UserAgent (); -use Types::Serialiser ();  use JSON ();  use Config::Tiny (); @@ -226,7 +225,7 @@ sub acme_resource($%) {  # Set the key ID (registration URI)  sub set_kid(;$) {      my $die = shift // 1; -    my $r = acme_resource('newAccount', onlyReturnExisting => Types::Serialiser::true ); +    my $r = acme_resource('newAccount', onlyReturnExisting => JSON::true );      if ($r->is_success()) {          $KID = $r->header('Location');      } elsif ($die) { @@ -242,9 +241,9 @@ if ($COMMAND eq 'account') {      my $flags = shift @ARGV;      my %h = ( contact => \@ARGV ) if @ARGV; -    $h{onlyReturnExisting}   = Types::Serialiser::true unless $flags & 0x01; -    $h{termsOfServiceAgreed} = Types::Serialiser::true if     $flags & 0x02; -    $h{status}               = "deactivated"           if     $flags & 0x04; +    $h{onlyReturnExisting}   = JSON::true    unless $flags & 0x01; +    $h{termsOfServiceAgreed} = JSON::true    if     $flags & 0x02; +    $h{status}               = "deactivated" if     $flags & 0x04;      print STDERR "Requesting new registration ".(@ARGV ? ("for ".join(', ', @ARGV)) : "")."\n"          if $flags & 0x01; | 
