Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 66854 invoked from network); 12 Nov 2009 06:40:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 12 Nov 2009 06:40:45 -0000 Received: (qmail 61661 invoked by uid 500); 12 Nov 2009 06:40:45 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 61567 invoked by uid 500); 12 Nov 2009 06:40:44 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 61557 invoked by uid 99); 12 Nov 2009 06:40:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Nov 2009 06:40:44 +0000 X-ASF-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Nov 2009 06:40:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AA1D7238899C; Thu, 12 Nov 2009 06:40:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r835258 - /commons/sandbox/runtime/trunk/src/main/native/modules/network/ssl/openssl.c Date: Thu, 12 Nov 2009 06:40:21 -0000 To: commits@commons.apache.org From: mturk@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091112064021.AA1D7238899C@eris.apache.org> 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);