jruby / jruby-ossl

DEFUNCT, new repository at:
https://github.com/jruby/jruby-openssl
47 stars 19 forks source link

Minimal fix for JRUBY-6715 #23

Closed makuk66 closed 12 years ago

makuk66 commented 12 years ago

This change replaces a hardcoded slash, used for file path creation, with the system-dependent default name-separator character provided by the File class. This fixes the use of SSL_CERT_DIR under Windows.

See https://jira.codehaus.org/browse/JRUBY-6715

headius commented 12 years ago

I have patched this on JRuby master, which will serve as the home for jossl stuff in JRuby 1.7 and later.

commit b7ef22617f4b82a7d2c2863f5b857e1b1c105a0e
Author: Charles Oliver Nutter <headius@headius.com>
Date:   Fri Jun 29 17:42:29 2012 -0500

    Fix JRUBY-6715

    jruby-openssl cert validation fails on windows

    This is a small localized fix by Martijn Koster. There's probably
    a better long-term fix.
makuk66 commented 12 years ago

Thanks!