fix ArgumentError in everything that closes a process handle

git-svn-id: file:///home/svn/framework3/trunk@10776 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
James Lee 2010-10-21 17:10:46 +00:00
parent 27d2761ec0
commit 2dbf731946
2 changed files with 3 additions and 3 deletions

View File

@ -309,7 +309,7 @@ class Process < Rex::Post::Process
#
# Closes the handle to the process that was opened.
#
def self.close(client,handle)
def self.close(client, handle)
request = Packet.create_request('stdapi_sys_process_close')
request.add_tlv(TLV_TYPE_HANDLE, handle)
response = client.send_request(request)
@ -320,7 +320,7 @@ class Process < Rex::Post::Process
#
# Instance method
#
def close(handle)
def close(handle=self.handle)
self.class.close(self.client, handle)
end

View File

@ -167,7 +167,7 @@ class Thread < Rex::Post::Thread
end
# Instance method
def self.close
def close
self.class.close(self.process.client, self.handle)
end