Fixed bug in String#to_ber. Thanks Austin.

This commit is contained in:
blackhedd 2006-04-16 09:16:14 +00:00
parent c9fb4256ac
commit 777028007e

View file

@ -137,7 +137,7 @@ end
class String
def read_ber syntax=nil
StringIO.new(self).read_ber
StringIO.new(self).read_ber(syntax)
end
end