From 1936743c814eef4501c7369e2a2a5f982578cf56 Mon Sep 17 00:00:00 2001 From: pgpickering Date: Mon, 18 Aug 2008 17:56:32 +0000 Subject: [PATCH] removed obsolete debug output --- nselib/pop3.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/nselib/pop3.lua b/nselib/pop3.lua index 9c58d89e1..413381cd8 100644 --- a/nselib/pop3.lua +++ b/nselib/pop3.lua @@ -34,7 +34,6 @@ function login_user(socket, user, pw) socket:send("USER " .. user .. "\r\n") status, line = socket:receive_lines(1) if not stat(line) then return false, err.user_error end - print("my way") socket:send("PASS " .. pw .. "\r\n") status, line = socket:receive_lines(1) @@ -142,7 +141,6 @@ function capabilities(host, port) socket:send("CAPA\r\n") status, line = socket:receive_buf("\r\n", false) - -- print("resp " .. line) if not stat(line) then capas.capa = false else