http://code.google.com/p/canopy-httpd/source/detail?r=1099
Modified:
/trunk/src/lib/canopy/string.c
=======================================
--- /trunk/src/lib/canopy/string.c Sun May 2 13:52:55 2010
+++ /trunk/src/lib/canopy/string.c Sat Nov 27 08:55:00 2010
@@ -146,9 +146,7 @@
do {
ret = vsnprintf(buf, len, fmt, vap);
- cnp_log_warn(cnp_logchan, "vsnprintf returned %d", ret);
if (ret >= 0) {
- cnp_log_warn(cnp_logchan, "cnp_realloc(%d)", ret + 1);
buf = cnp_realloc(buf, (size_t)(ret + 1));
if (buf == NULL)
return (-1);