Correct a typo (stringified symbol loses the :)

bug/bundler_fix
HD Moore 2015-03-09 15:42:23 -05:00
parent 038591497f
commit 78456fb2e0
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class PayloadCachedSize
# @param mod [Msf::Payload] The class of the payload module to update
# @return [Fixnum]
def self.compute_cached_size(mod)
return :dynamic if is_dynamic?(mod)
return ":dynamic" if is_dynamic?(mod)
return mod.new.size
end