summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/LuaHttp.cc12
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/LuaHttp.cc b/lib/LuaHttp.cc
index 375de3e..2cd13f9 100644
--- a/lib/LuaHttp.cc
+++ b/lib/LuaHttp.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaHttp.cc,v 1.23 2007-10-12 13:04:38 pixel Exp $ */
+/* $Id: LuaHttp.cc,v 1.24 2008-01-21 17:22:41 pixel Exp $ */
#include "Domain.h"
#include "LuaHttp.h"
@@ -454,27 +454,17 @@ int sLua_LuaDomain::LuaDomain_proceed_statics(Lua * L, int n, int caller) {
*p = 0;
L->push();
r = 3;
- printm(M_INFO, "IDOMAIN called.\n");
break;
case LUADOMAIN_NDOMAIN:
p = (Domain **) L->touserdata(1);
- printm(M_INFO, "NDOMAIN called.\n");
if (*p) {
- printm(M_INFO, "Not first time.\n");
*p = (*p)->Next();
} else {
- printm(M_INFO, "First time. p = %p\n", Domain::First());
*p = Domain::First();
- printm(M_INFO, "First has pattern: ");
- printm(M_BARE, Domain::First()->GetPattern());
}
if (*p) {
- printm(M_INFO, "Still has data.\n");
- printm(M_INFO, "Get pattern = ");
- printm(M_BARE, (*p)->GetPattern());
L->push((*p)->GetPattern());
} else {
- printm(M_INFO, "No more data.\n");
L->push();
}
r = 1;