From: Simon Tatham Date: Thu, 11 Jan 2001 13:19:11 +0000 (+0000) Subject: Remove rogue debug statement X-Git-Tag: 0.52~506 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;ds=sidebyside;h=cd9bab9b522f4ed23a4e1113be1a64437b0f0af9;p=PuTTY.git Remove rogue debug statement [originally from svn r855] --- diff --git a/winnet.c b/winnet.c index 88fbae0e..86ae41c8 100644 --- a/winnet.c +++ b/winnet.c @@ -216,7 +216,7 @@ SockAddr sk_namelookup(char *host, char **canonicalname) { LPVOID lpMsgBuf; FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR)&lpMsgBuf, 0, NULL); - debug(("Error %ld: %s (h=%lx)\n", err, lpMsgBuf, h)); + /*debug(("Error %ld: %s (h=%lx)\n", err, lpMsgBuf, h));*/ /* Free the buffer. */ LocalFree(lpMsgBuf); }