mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 17:43:59 +02:00
merge revision(s) r44642: [Backport #9093]
* lib/resolv.rb (Resolv::DNS::Resource::TXT#data): Return concatenated string. Patch by Ryan Brunner. [ruby-core:58220] [Bug #9093] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@44983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9187fefa4d
commit
5d5fb5f2b4
3 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
Sun Feb 16 00:54:50 2014 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* lib/resolv.rb (Resolv::DNS::Resource::TXT#data): Return concatenated
|
||||
string.
|
||||
Patch by Ryan Brunner. [ruby-core:58220] [Bug #9093]
|
||||
|
||||
Sun Feb 16 00:50:59 2014 Zachary Scott <e@zzak.io>
|
||||
|
||||
* ext/openssl/ossl_pkey_dh.c: Fixed typo by Sandor Szuecs [Bug #9243]
|
||||
|
|
|
@ -1943,10 +1943,10 @@ class Resolv
|
|||
attr_reader :strings
|
||||
|
||||
##
|
||||
# Returns the first string from +strings+.
|
||||
# Returns the concatenated string from +strings+.
|
||||
|
||||
def data
|
||||
@strings[0]
|
||||
@strings.join("")
|
||||
end
|
||||
|
||||
def encode_rdata(msg) # :nodoc:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#define RUBY_VERSION "2.0.0"
|
||||
#define RUBY_RELEASE_DATE "2014-02-16"
|
||||
#define RUBY_PATCHLEVEL 417
|
||||
#define RUBY_PATCHLEVEL 418
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2014
|
||||
#define RUBY_RELEASE_MONTH 2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue