You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by sf...@apache.org on 2012/07/16 22:54:54 UTC

svn commit: r1362248 - /apr/apr/trunk/crypto/apr_crypto_nss.c

Author: sf
Date: Mon Jul 16 20:54:53 2012
New Revision: 1362248

URL: http://svn.apache.org/viewvc?rev=1362248&view=rev
Log:
Forward port r1211337 from apr-util 1.4:

Some compilers don't allow empty structure declarations

Modified:
    apr/apr/trunk/crypto/apr_crypto_nss.c

Modified: apr/apr/trunk/crypto/apr_crypto_nss.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/crypto/apr_crypto_nss.c?rev=1362248&r1=1362247&r2=1362248&view=diff
==============================================================================
--- apr/apr/trunk/crypto/apr_crypto_nss.c (original)
+++ apr/apr/trunk/crypto/apr_crypto_nss.c Mon Jul 16 20:54:53 2012
@@ -57,6 +57,7 @@ struct apr_crypto_t {
 };
 
 struct apr_crypto_config_t {
+       void *opaque;
 };
 
 struct apr_crypto_key_t {