ruby-changes:39591
From: nobu <ko1@a...>
Date: Mon, 24 Aug 2015 17:55:29 +0900 (JST)
Subject: [ruby-changes:39591] nobu:r51672 (trunk): win32.c: licenses
nobu 2015-08-24 17:55:09 +0900 (Mon, 24 Aug 2015) New Revision: 51672 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=51672 Log: win32.c: licenses * win32/win32.c (rb_w32_wreadlink, rb_w32_wopen): add missing licenses. [ci skip] Modified files: trunk/win32/win32.c Index: win32/win32.c =================================================================== --- win32/win32.c (revision 51671) +++ win32/win32.c (revision 51672) @@ -4724,7 +4724,7 @@ reparse_symlink(const WCHAR *path, repar https://github.com/ruby/ruby/blob/trunk/win32/win32.c#L4724 e = map_errno(GetLastError()); } else if (rp->ReparseTag != IO_REPARSE_TAG_SYMLINK && - rp->ReparseTag != IO_REPARSE_TAG_MOUNT_POINT){ + rp->ReparseTag != IO_REPARSE_TAG_MOUNT_POINT) { e = EINVAL; } CloseHandle(f); @@ -4739,6 +4739,7 @@ rb_w32_reparse_symlink_p(const WCHAR *pa https://github.com/ruby/ruby/blob/trunk/win32/win32.c#L4739 return reparse_symlink(path, &rp) == 0; } +/* License: Ruby's */ ssize_t rb_w32_wreadlink(const WCHAR *path, WCHAR *buf, size_t bufsize) { @@ -5876,6 +5877,7 @@ rb_w32_open(const char *file, int oflag, https://github.com/ruby/ruby/blob/trunk/win32/win32.c#L5877 return ret; } +/* License: Ruby's */ int rb_w32_wopen(const WCHAR *file, int oflag, ...) { -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/