Small typo fix

This commit is contained in:
HD Moore 2011-12-10 13:26:47 -06:00
parent e46745b761
commit e33ca5a7ba
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ class OptAddressRange < OptBase
ret = ''
count.times {
ret << " " if not ret.empty?
ret << [ rand(0x100000000) ].pack("N").unpack("C*").join(".")
ret << [ rand(0x100000000) ].pack("N").unpack("C*").map{|x| x.to_s }.join(".")
}
return ret
end