---------------------
PatchSet 11268
Date: 2007/02/26 23:45:49
Author: hno
Branch: HEAD
Tag: (none)
Log:
Clean up gopher listings somewhat. Links was overly escaped.
Members:
src/gopher.c:1.179->1.180
Index: squid/src/gopher.c
===================================================================
RCS file: /cvsroot/squid/squid/src/gopher.c,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -r1.179 -r1.180
--- squid/src/gopher.c 26 Feb 2007 22:02:45 -0000 1.179
+++ squid/src/gopher.c 26 Feb 2007 23:45:49 -0000 1.180
@@ -1,6 +1,6 @@
/*
- * $Id: gopher.c,v 1.179 2007/02/26 22:02:45 hno Exp $
+ * $Id: gopher.c,v 1.180 2007/02/26 23:45:49 hno Exp $
*
* DEBUG: section 10 Gopher
* AUTHOR: Harvest Derived
@@ -492,7 +492,7 @@
} else {
/* Standard link */
snprintf(tmpbuf, TEMP_BUF_SIZE, " %s\n",
- icon_url, host, gtype, escaped_selector, html_quote(name));
+ icon_url, host, gtype, rfc1738_escape(selector), html_quote(name));
}
}
safe_free(escaped_selector);