You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/11/12 07:40:21 UTC

svn commit: r835258 - /commons/sandbox/runtime/trunk/src/main/native/modules/network/ssl/openssl.c

Author: mturk
Date: Thu Nov 12 06:40:21 2009
New Revision: 835258

URL: http://svn.apache.org/viewvc?rev=835258&view=rev
Log:
Use correct OpenSSL namespace

Modified:
    commons/sandbox/runtime/trunk/src/main/native/modules/network/ssl/openssl.c

Modified: commons/sandbox/runtime/trunk/src/main/native/modules/network/ssl/openssl.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/modules/network/ssl/openssl.c?rev=835258&r1=835257&r2=835258&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/modules/network/ssl/openssl.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/modules/network/ssl/openssl.c Thu Nov 12 06:40:21 2009
@@ -42,13 +42,13 @@
 
 #endif /* ACR_ENABLE_TEST */
 
-ACR_JNI_EXPORT_DECLARE(jint, OpenSSL, version0)(ACR_JNISTDARGS)
+ACR_NET_EXPORT_DECLARE(jint, OpenSSL, version0)(ACR_JNISTDARGS)
 {
     UNREFERENCED_STDARGS;
     return OPENSSL_VERSION_NUMBER;
 }
 
-ACR_JNI_EXPORT_DECLARE(jstring, OpenSSL, version1)(ACR_JNISTDARGS)
+ACR_NET_EXPORT_DECLARE(jstring, OpenSSL, version1)(ACR_JNISTDARGS)
 {
     UNREFERENCED_O;
     return CSTR_TO_JSTRING(OPENSSL_VERSION_TEXT);