ports/net/gopher/patches/patch-object_GSgopherobj_c

15 lines
427 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
--- object/GSgopherobj.c.orig Wed Jul 20 17:28:53 2005
+++ object/GSgopherobj.c Fri Nov 29 18:18:13 2013
@@ -1870,9 +1870,9 @@ GSfromLink(
}
/** Check for domain using regexps **/
- if (re_comp(host))
+ if (gopher_re_comp(host))
break;
- if (re_exec(peer) == 1)
+ if (gopher_re_exec(peer) == 1)
BadDomain = TestResult;
else
BadDomain = !TestResult;