pkgsrc/www/htdig/patches/patch-af
wiz 8f48e9d890 Update htdig using htdig-devel. Update packages using it
and bump their PKGREVISIONs. Remove htdig-devel.
2011-12-05 10:18:16 +00:00

23 lines
880 B
Text

$NetBSD: patch-af,v 1.2 2011/12/05 10:18:17 wiz Exp $
--- htsearch/htsearch.cc.orig 2004-05-28 22:15:24.000000000 +0900
+++ htsearch/htsearch.cc
@@ -68,7 +68,7 @@ StringList collectionList;
// reconised word prefixes (for field-restricted search and per-word fuzzy
// algorithms) in *descending* alphabetical order.
// Don't use a dictionary structure, as setup time outweights saving.
-struct {char *name; unsigned int flag; } colonPrefix [] =
+static struct {char *name; unsigned int flag; } colonPrefix [] =
{
{ "url", FLAG_URL },
{ "title", FLAG_TITLE },
@@ -211,8 +211,7 @@ main(int ac, char **av)
}
if (access((char*)configFile, R_OK) < 0)
{
- reportError(form("Unable to read configuration file '%s'",
- configFile.get()));
+ reportError(form("Unable to read configuration file."));
}
config->Read(configFile);