From 02a9b6c1c4b2c2ef6c32e491d3da9265a26485f3 Mon Sep 17 00:00:00 2001 From: Pixel Date: Mon, 1 Jun 2009 08:59:27 -0700 Subject: This couldn't possibly have been merged properly... --- lib/LuaHttp.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/LuaHttp.cc b/lib/LuaHttp.cc index 59ff7e6..2a78391 100644 --- a/lib/LuaHttp.cc +++ b/lib/LuaHttp.cc @@ -305,7 +305,7 @@ int sLua_HttpResponse::HttpResponse_proceed_statics(Lua * L, int n, int caller) dec_t = dec.to_charp(); L->push(Base64::encode(dec_t, dec.strlen())); } else { - Handle * hdata = L->recast(1) + Handle * hdata = L->recast(1); int size = hdata->GetSize(); char * data = (char *) malloc(size); hdata->read(data, size); @@ -338,7 +338,7 @@ int sLua_HttpResponse::HttpResponse_proceed_statics(Lua * L, int n, int caller) h.Update(dec); L->push(h.Finish()); } else { - Handle * hdata = L->recast(1) + Handle * hdata = L->recast(1); MD5 h; h.Update(hdata); L->push(h.Finish()); @@ -352,7 +352,7 @@ int sLua_HttpResponse::HttpResponse_proceed_statics(Lua * L, int n, int caller) h.Update(dec); L->push(h.Finish()); } else { - Handle * hdata = L->recast(1) + Handle * hdata = L->recast(1); SHA1 h; h.Update(hdata); L->push(h.Finish()); @@ -366,7 +366,7 @@ int sLua_HttpResponse::HttpResponse_proceed_statics(Lua * L, int n, int caller) h.Update(dec); L->push(h.Finish()); } else { - Handle * hdata = L->recast(1) + Handle * hdata = L->recast(1); SHA256 h; h.Update(hdata); L->push(h.Finish()); -- cgit v1.2.3