Skip to content

Commit 0f31edf

Browse files
committed
Change tab into space to be standard compliant
Thanks to Brent and Dave for pointing it out.
1 parent 6385593 commit 0f31edf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/msf/core/exploit/smtp_deliver.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -242,12 +242,12 @@ def raw_send_recv(cmd, nsock=self.sock)
242242
# to dump it all.
243243
vprint_status("C: #{((cmd.length > 120) ? cmd[0,120] + "..." : cmd).strip}")
244244
end
245-
begin
246-
nsock.put(cmd)
247-
res = nsock.get_once
248-
rescue
249-
return nil
250-
end
245+
begin
246+
nsock.put(cmd)
247+
res = nsock.get_once
248+
rescue
249+
return nil
250+
end
251251
# Don't truncate the server output because it might be helpful for
252252
# debugging.
253253
vprint_status("S: #{res.strip}") if res

0 commit comments

Comments
 (0)