From 0e537a17bb68d931ece004a382c531ba125394b7 Mon Sep 17 00:00:00 2001 From: James Lee Date: Thu, 11 Mar 2010 17:48:59 +0000 Subject: [PATCH] fix some pastographical errors git-svn-id: file:///home/svn/framework3/trunk@8790 4d416f70-5f16-0410-b530-b9f4589650da --- lib/msf/core/session/provider/single_command_shell.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/msf/core/session/provider/single_command_shell.rb b/lib/msf/core/session/provider/single_command_shell.rb index dcd4be4953..ddcdf6afc3 100644 --- a/lib/msf/core/session/provider/single_command_shell.rb +++ b/lib/msf/core/session/provider/single_command_shell.rb @@ -27,14 +27,14 @@ module SingleCommandShell # # Writes data to the command shell. # - def shell_read(buf) + def shell_write(buf) raise NotImplementedError end # # Closes the command shell. # - def shell_read() + def shell_close() raise NotImplementedError end @@ -42,4 +42,4 @@ end end end -end \ No newline at end of file +end