From 1801e714ec1393dfe1a8a35aa22429eb8483ef4a Mon Sep 17 00:00:00 2001 From: Paul J R Date: Fri, 26 Oct 2012 04:59:44 +1100 Subject: [PATCH] getting rid of some debugging output --- gwvpmini/gwvpmini_gitbackend.php | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/gwvpmini/gwvpmini_gitbackend.php b/gwvpmini/gwvpmini_gitbackend.php index 88c205f..5fe188a 100644 --- a/gwvpmini/gwvpmini_gitbackend.php +++ b/gwvpmini/gwvpmini_gitbackend.php @@ -323,7 +323,7 @@ function gwvpmini_callGitBackend($username, $repo) $stlimit = 0; - $fp = fopen("/tmp/gitup.".rand(0,4000000), "w"); + //$fp = fopen("/tmp/gitup.".rand(0,4000000), "w"); $from_client_data = ""; // i was going to use stream_select, but i feel this works better like this while($continue) { @@ -351,7 +351,7 @@ function gwvpmini_callGitBackend($username, $repo) } if($from_client_data !== false) { fwrite($pipes[0], $from_client_data); - fwrite($fp, $from_client_data); + //fwrite($fp, $from_client_data); } fflush($pipes[0]); //fwrite($fl, $from_client_data); @@ -381,17 +381,18 @@ function gwvpmini_callGitBackend($username, $repo) // or something the git-http-backend thing is doing.. // TODO: find out why this happens $from_cgi_data = preg_replace("/^\r\n/", "", $from_cgi_data_t); + /* if(strlen($from_cgi_data)!=strlen($from_cgi_data_t)) { error_log("MOOOKS - we did trunc"); } else { error_log("MOOOKS - we did not trunc"); - } + }*/ $firstline = false; } } if($from_cgi_data !== false && $from_cgi_data != "") { - error_log("send to client ($from_cgi_data)"); + //error_log("send to client of size ".strlen($from_cgi_data)); echo $from_cgi_data; ob_flush(); flush(); -- 1.7.0.4