From: Fredrik Tolf Date: Mon, 26 Nov 2007 13:06:55 +0000 (+0100) Subject: Added some frustrated comments. X-Git-Tag: 1.1~32 X-Git-Url: http://dolda2000.com/gitweb/?p=doldaconnect.git;a=commitdiff_plain;h=6421be5fc011a093e35f5a2d42a8078de6ffdc0e Added some frustrated comments. --- 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;