mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
23 lines
671 B
Plaintext
23 lines
671 B
Plaintext
$NetBSD: patch-ab,v 1.4 2005/12/30 17:24:25 joerg Exp $
|
|
|
|
--- program/psiconv/gen_xhtml.c.orig 2005-12-30 16:37:52.000000000 +0000
|
|
+++ program/psiconv/gen_xhtml.c
|
|
@@ -719,7 +719,7 @@ int gen_xhtml(const psiconv_config confi
|
|
}
|
|
|
|
|
|
-static struct fileformat_s ffs[] =
|
|
+static struct fileformat_s my_ffs[] =
|
|
{
|
|
{
|
|
"XHTML",
|
|
@@ -739,6 +739,6 @@ static struct fileformat_s ffs[] =
|
|
void init_xhtml(void)
|
|
{
|
|
int i;
|
|
- for (i = 0; ffs[i].name; i++)
|
|
- psiconv_list_add(fileformat_list,ffs+i);
|
|
+ for (i = 0; my_ffs[i].name; i++)
|
|
+ psiconv_list_add(fileformat_list,my_ffs+i);
|
|
}
|