Displaying 1 result from an estimated 1 matches for "util_url_unescape".
2004 Aug 06
2
improved error.log output --diff
....c icecast-new/src/util.c
--- icecast/src/util.c 2003-07-18 16:29:23.000000000 -0400
+++ icecast-new/src/util.c 2003-08-06 19:19:17.000000000 -0400
@@ -293,7 +293,7 @@
done = 1;
break;
case 0:
- ERROR0("Fatal internal logic error in util_url_unescape()");
+ ERROR0("Fatal internal logic error in util_url_unescape(), %s", "-");
free(decoded);
return NULL;
break;
@@ -324,7 +324,7 @@
path = util_url_unescape(uri);
if(path == NULL) {
- WARN1...