X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=clients%2Fgtk2%2Fhublist.c;h=74910e576243610b2a5d22c35ea52bde3ca8a1ed;hb=6421be5fc011a093e35f5a2d42a8078de6ffdc0e;hp=7342945ac722c74bad929911e9461a81792efa7b;hpb=6d00b97a0a15924a2b7a433a702bac6d5e0d67f0;p=doldaconnect.git 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;