From 6421be5fc011a093e35f5a2d42a8078de6ffdc0e Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Mon, 26 Nov 2007 14:06:55 +0100 Subject: [PATCH] Added some frustrated comments. --- clients/gtk2/hublist.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clients/gtk2/hublist.c b/clients/gtk2/hublist.c index 7342945..74910e5 100644 --- a/clients/gtk2/hublist.c +++ b/clients/gtk2/hublist.c @@ -210,6 +210,7 @@ void fetchhublist(char *url, regex_t *flt) len = strlen(url); p = url + len; if((len > 4) && !strncmp(p - 4, ".bz2", 4)) { + /* Because using Transfer-Encoding would just be too good! */ p -= 4; len -= 4; bzs = memset(smalloc(sizeof(*bzs)), 0, sizeof(*bzs)); @@ -222,6 +223,7 @@ void fetchhublist(char *url, regex_t *flt) } } if((len > 4) && !strncmp(p - 4, ".xml", 4)) { + /* Because using Content-Type would just be too good! */ p -= 4; len -= 4; handler = pubhubxmlhandler; -- 2.11.0