Do minor style cleanup

bug/bundler_fix
jvazquez-r7 2015-04-20 15:44:45 -05:00
parent c7da9d6f79
commit a56dd5d1ff
No known key found for this signature in database
GPG Key ID: 38D99152B9352D83
1 changed files with 7 additions and 6 deletions

View File

@ -378,17 +378,18 @@ class OptAddressRange < OptBase
def normalize(value)
return nil unless value.kind_of?(String)
if (value =~ /^rand:(.*)/)
if value =~ /^rand:(.*)/
count = $1.to_i
return false if count < 1
ret = ''
count.times {
ret << " " if not ret.empty?
ret << [ rand(0x100000000) ].pack("N").unpack("C*").map{|x| x.to_s }.join(".")
}
count.times do
ret << ' ' unless ret.empty?
ret << [ rand(0x100000000) ].pack('N').unpack('C*').map{|x| x.to_s }.join('.')
end
return ret
end
return value
value
end
def valid?(value)