r74121 - in /branches/upstream/libcrypt-openssl-x509-perl/current: Changes META.yml README X509.pm X509.xs

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Sun May 8 06:56:25 UTC 2011


Author: carnil
Date: Sun May  8 06:56:14 2011
New Revision: 74121

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=74121
Log:
[svn-upgrade] new version libcrypt-openssl-x509-perl (1.8.2)

Modified:
    branches/upstream/libcrypt-openssl-x509-perl/current/Changes
    branches/upstream/libcrypt-openssl-x509-perl/current/META.yml
    branches/upstream/libcrypt-openssl-x509-perl/current/README
    branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm
    branches/upstream/libcrypt-openssl-x509-perl/current/X509.xs

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/Changes?rev=74121&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/Changes (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/Changes Sun May  8 06:56:14 2011
@@ -1,4 +1,7 @@
 Revision history for Perl extension Crypt::OpenSSL::X509.
+
+1.8.2  Sat May  7 20:19:58 PDT 2011
+	- Fix warnings under gcc 4.6
 
 1.8.1  Sun Apr 17 06:57:09 PDT 2011
 	- Fix OpenSSL version check.

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/META.yml?rev=74121&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/META.yml (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/META.yml Sun May  8 06:56:14 2011
@@ -23,4 +23,4 @@
   bugtracker: https://github.com/dsully/perl-crypt-openssl-x509/issues
   homepage: https://github.com/dsully/perl-crypt-openssl-x509
   license: http://dev.perl.org/licenses/
-version: 1.800.1
+version: 1.800.2

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/README?rev=74121&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/README (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/README Sun May  8 06:56:14 2011
@@ -1,4 +1,4 @@
-Crypt/OpenSSL/X509 version 1.8.1
+Crypt/OpenSSL/X509 version 1.8.2
 ===============================
 
 The README is used to introduce the module and provide instructions on

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm?rev=74121&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm Sun May  8 06:56:14 2011
@@ -5,7 +5,7 @@
 use Exporter;
 use base qw(Exporter);
 
-$VERSION = '1.800.1';
+$VERSION = '1.800.2';
 
 @EXPORT_OK = qw(
   FORMAT_UNDEF FORMAT_ASN1 FORMAT_TEXT FORMAT_PEM FORMAT_NETSCAPE

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/X509.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/X509.xs?rev=74121&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/X509.xs (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/X509.xs Sun May  8 06:56:14 2011
@@ -853,13 +853,11 @@
 
   PREINIT:
   BASIC_CONSTRAINTS *bs;
-  const X509V3_EXT_METHOD *method;
   int ret = 0;
 
   CODE:
 
   /* retrieve the value of CA or pathlen in basicConstraints */
-  method = X509V3_EXT_get(ext);
   bs = X509V3_EXT_d2i(ext);
 
   if (strcmp(value, "ca") == 0) {
@@ -1017,7 +1015,6 @@
 
   PREINIT:
   char buf[128];
-  int r;
 
   CODE:
 
@@ -1025,7 +1022,7 @@
     croak("No ObjectID supplied\n");
   }
 
-  r = OBJ_obj2txt(buf, 128, obj, 0);
+  (void)OBJ_obj2txt(buf, 128, obj, 0);
 
   RETVAL = buf;
 
@@ -1038,7 +1035,6 @@
 
   PREINIT:
   char buf[128];
-  int r;
 
   CODE:
 
@@ -1046,7 +1042,7 @@
     croak("No ObjectID supplied\n");
   }
 
-  r = OBJ_obj2txt(buf, 128, obj, 1);
+  (void)OBJ_obj2txt(buf, 128, obj, 1);
 
   RETVAL = buf;
 




More information about the Pkg-perl-cvs-commits mailing list