mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/nkf/nkf-utf8/nkf.c (mime_putc): fix typo.
[Bug #12202] [ruby-core:74802] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54489 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8fba800f73
commit
eee2769c0d
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Apr 5 14:50:28 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/nkf/nkf-utf8/nkf.c (mime_putc): fix typo.
|
||||||
|
[Bug #12202] [ruby-core:74802]
|
||||||
|
|
||||||
Tue Apr 5 00:06:44 2016 Aeris <aeris@imirhil.fr>
|
Tue Apr 5 00:06:44 2016 Aeris <aeris@imirhil.fr>
|
||||||
|
|
||||||
* ext/openssl/ossl_ssl.c (ossl_ssl_tmp_key): Access to ephemeral
|
* ext/openssl/ossl_ssl.c (ossl_ssl_tmp_key): Access to ephemeral
|
||||||
|
|
|
||||||
|
|
@ -5436,7 +5436,7 @@ mime_putc(nkf_char c)
|
||||||
mimeout_state.buf[mimeout_state.count++] = (char)c;
|
mimeout_state.buf[mimeout_state.count++] = (char)c;
|
||||||
if (mimeout_state.count>MIMEOUT_BUF_LENGTH) {
|
if (mimeout_state.count>MIMEOUT_BUF_LENGTH) {
|
||||||
eof_mime();
|
eof_mime();
|
||||||
for (j=0;i<mimeout_state.count;j++) {
|
for (j=0;j<mimeout_state.count;j++) {
|
||||||
(*o_mputc)(mimeout_state.buf[j]);
|
(*o_mputc)(mimeout_state.buf[j]);
|
||||||
base64_count++;
|
base64_count++;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue