[openssl-commits] [tools] master update

Richard Levitte levitte at openssl.org
Wed Jun 14 22:02:36 UTC 2017


The branch master has been updated
       via  3e81d028d550ffa98787c1a23c27fc0db13a922a (commit)
      from  02ff70f850cc06db3f184b6e24e99174e8e8cdb1 (commit)


- Log -----------------------------------------------------------------
commit 3e81d028d550ffa98787c1a23c27fc0db13a922a
Author: Richard Levitte <richard at levitte.org>
Date:   Thu Jun 15 00:02:31 2017 +0200

    OpenSSL-Query: Correct REST API syntax in list_people

-----------------------------------------------------------------------

Summary of changes:
 OpenSSL-Query/lib/OpenSSL/Query/PersonREST.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/OpenSSL-Query/lib/OpenSSL/Query/PersonREST.pm b/OpenSSL-Query/lib/OpenSSL/Query/PersonREST.pm
index ce3abb9..d4b78b3 100644
--- a/OpenSSL-Query/lib/OpenSSL/Query/PersonREST.pm
+++ b/OpenSSL-Query/lib/OpenSSL/Query/PersonREST.pm
@@ -39,7 +39,7 @@ sub list_people {
   my $self = shift;
 
   my $ua = $self->_personhandler;
-  my $json = $ua->get($self->base_url . '/0/People/');
+  my $json = $ua->get($self->base_url . '/0/People');
   croak "Server error: ", $json->message if $json->is_server_error;
   return () unless $json->code == 200;
 


More information about the openssl-commits mailing list