+ it is not sent to oook and feedback-cat via pipes, but it is read by them as a file
+ it is read in 2 passes and the URL's are identified in the 1st phase (catalog.c)
2. URL fingerprinting always uses cf/url-equiv, even in the indexer
#define URL_KEY_BUF_SIZE (3*MAX_URL_SIZE)
byte *url_key(byte *url, byte *buf);
void url_fingerprint(byte *url, struct fingerprint *fp);
-void url_key_init(uns load_prefixes);
+void url_key_init(void);
/* Conversion of document age from seconds to our internal units */
}
void
-url_key_init(uns load_prefixes)
+url_key_init(void)
{
pxtab_init();
- if (load_prefixes && urlkey_pxtab_path)
+ if (urlkey_pxtab_path)
pxtab_load(urlkey_pxtab_path);
}