openbsd-ports/net/gnaughty/patches/patch-src_parselinks_c
2011-11-13 21:47:04 +00:00

50 lines
1.4 KiB
Plaintext

$OpenBSD: patch-src_parselinks_c,v 1.1 2011/11/13 21:47:04 jasper Exp $
svn rev 315. Make gnaughty work again
--- src/parselinks.c.orig Fri Oct 15 23:04:06 2010
+++ src/parselinks.c Sun Nov 13 22:46:04 2011
@@ -83,10 +83,17 @@ GList* getsublimelinks(GString *page)
{
curlink = g_new0(link_t, 1);
//if not found
- if ((pos=strstr(pos, " <a href=\"http://"))==NULL)
+ if ((pos=strstr(pos, " <a href=\"/out.php?u=http\%3A\%2F\%2F"))==NULL)
break;
- else
- pos+=sizeof(gchar)*10;
+ else {
+ pos+=sizeof(gchar)*21;
+ if (g_strstr_len(pos,75,"clicks.cgi") != NULL) {
+ if ((pos=strstr(pos, "HTML%3Dhttp\%3A\%2F\%2F"))==NULL)
+ break;
+ else
+ pos+=sizeof(gchar)*7;
+ }
+ }
end=strstr(pos, "\"");
@@ -97,10 +104,10 @@ GList* getsublimelinks(GString *page)
pos=end;
//get the description of that link
- if ((pos=strstr(pos, "</a> - "))==NULL)
+ if ((pos=strstr(pos, " - "))==NULL)
break;
else
- pos+=7;
+ pos+=3;
if((end=strstr(pos, "</li>"))==NULL)
{
curdesc=g_string_new("");
@@ -111,7 +118,7 @@ GList* getsublimelinks(GString *page)
g_free (tmp);
if (g_strstr_len(curdesc->str, 10, " tube ") == NULL) {
- curlink->url=g_string_new(cururl->str);
+ curlink->url=g_string_new(g_uri_unescape_string(cururl->str,NULL));
curlink->desc=g_string_new(curdesc->str);
links=g_list_append(links, curlink);
} else {