Use consistent case for Spawn option

git-svn-id: file:///home/svn/framework3/trunk@13130 4d416f70-5f16-0410-b530-b9f4589650da
unstable
James Lee 2011-07-08 20:08:40 +00:00
parent dfc7f39e1c
commit ff53057965
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ module Metasploit3
end
def config
spawn = datastore["SPAWN"] || 2
spawn = datastore["Spawn"] || 2
c = ""
c << "Spawn=#{spawn}\n"
c << "LPORT=#{datastore["LPORT"]}\n" if datastore["LPORT"]

View File

@ -45,7 +45,7 @@ module Metasploit3
end
def config
spawn = datastore["SPAWN"] || 2
spawn = datastore["Spawn"] || 2
c = ""
c << "Spawn=#{spawn}\n"
c << "LHOST=#{datastore["LHOST"]}\n" if datastore["LHOST"]