W3cubDocs

/Ruby 3

module Resolv::SZ

Public Instance Methods

read_s(key) Show source
# File ext/win32/lib/win32/resolv.rb, line 53
def read_s(key)
  type, str = read(key)
  unless type == Registry::REG_SZ
    warn "Broken registry, #{name}\\#{key} was #{Registry.type2name(type)}, ignored"
    return String.new
  end
  str
end

ad hoc workaround for broken registry

Ruby Core © 1993–2020 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.