[#75225] [Ruby trunk Feature#12324] Support OpenSSL 1.1.0 (and drop support for 0.9.6/0.9.7) — k@...
Issue #12324 has been reported by Kazuki Yamaguchi.
6 messages
2016/04/27
[#78693] Re: [Ruby trunk Feature#12324] Support OpenSSL 1.1.0 (and drop support for 0.9.6/0.9.7)
— Eric Wong <normalperson@...>
2016/12/17
k@rhe.jp wrote:
[#78701] Re: [Ruby trunk Feature#12324] Support OpenSSL 1.1.0 (and drop support for 0.9.6/0.9.7)
— Kazuki Yamaguchi <k@...>
2016/12/17
On Sat, Dec 17, 2016 at 01:31:12AM +0000, Eric Wong wrote:
[#78702] Re: [Ruby trunk Feature#12324] Support OpenSSL 1.1.0 (and drop support for 0.9.6/0.9.7)
— Eric Wong <normalperson@...>
2016/12/17
Kazuki Yamaguchi <k@rhe.jp> wrote:
[ruby-core:74974] Re: [Ruby trunk Bug#12264] Win32::Registry::API.DeleteKey and DeleteValue reference renamed constants
From:
Joe Swatosh <joe.swatosh@...>
Date:
2016-04-15 19:04:25 UTC
List:
ruby-core #74974
Thanks! On Sun, Apr 10, 2016 at 4:50 AM, <nobu@ruby-lang.org> wrote: > Issue #12264 has been updated by Nobuyoshi Nakada. > > Description updated > Backport changed from 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN to 2.1: > REQUIRED, 2.2: REQUIRED, 2.3: REQUIRED > > ---------------------------------------- > Bug #12264: Win32::Registry::API.DeleteKey and DeleteValue reference > renamed constants > https://bugs.ruby-lang.org/issues/12264#change-57993 > > * Author: Joe Swatosh > * Status: Open > * Priority: Normal > * Assignee: > * ruby -v: 2.1 and 2.2 > * Backport: 2.1: REQUIRED, 2.2: REQUIRED, 2.3: REQUIRED > ---------------------------------------- > The fix for https://bugs.ruby-lang.org/issues/10820 ( > https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/49542) > started using the wide version of the registry APIs. > > ************** > ```diff > --- > D:/Ruby/ruby-2.1.8-i386-mingw32/lib/ruby/2.1.0/win32/registry.rb.original > Tue Jan 12 05:21:04 2016 > +++ D:/Ruby/ruby-2.1.8-i386-mingw32/lib/ruby/2.1.0/win32/registry.rb > Mon Apr 4 08:17:45 2016 > @@ -321,11 +321,11 @@ For detail, see the MSDN[http://msdn.microsoft.com > end > > def DeleteValue(hkey, name) > - check RegDeleteValue.call(hkey, make_wstr(name)) > + check RegDeleteValueW.call(hkey, make_wstr(name)) > end > > def DeleteKey(hkey, name) > - check RegDeleteKey.call(hkey, make_wstr(name)) > + check RegDeleteKeyW.call(hkey, make_wstr(name)) > end > > def FlushKey(hkey) > ``` > ************************* > > Is a follow up to make the referenced constants match the renames.... > Thanks! > > ---Files-------------------------------- > d.diff (656 Bytes) > > > -- > https://bugs.ruby-lang.org/ > > Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> > <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core> > Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>