On Fri, Nov 24, 2006 at 12:57:49AM -0800, Junio C Hamano wrote: > + # Skip up to the empty line of the proxy server output > + # including the response headers. > + while ($rep = <$s>) { > + last if (!defined $rep || > + $rep eq "\n" || > + $rep eq "\r\n"); > + } Nit: checking defined($rep) inside the loop is redundant. -Peff - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html