1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* transcode.c: fix a typo

[ci skip][fix GH-1091] Patch by @jwworth

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52534 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2015-11-11 05:14:36 +00:00
parent b32a30340b
commit ccf647f71c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Nov 11 14:14:33 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* transcode.c: fix a typo
[ci skip][fix GH-1091] Patch by @jwworth
Wed Nov 11 11:58:38 2015 Shugo Maeda <shugo@ruby-lang.org>
* lib/net/ftp.rb (initialize): Connections are in passive mode per

View file

@ -154,7 +154,7 @@ struct rb_econv_t {
typedef struct {
const char *sname;
const char *dname;
const char *lib; /* null means means no need to load a library */
const char *lib; /* null means no need to load a library */
const rb_transcoder *transcoder;
} transcoder_entry_t;