summaryrefslogtreecommitdiff
path: root/textproc/rtf-tools/patches/patch-aj
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/rtf-tools/patches/patch-aj')
-rw-r--r--textproc/rtf-tools/patches/patch-aj23
1 files changed, 0 insertions, 23 deletions
diff --git a/textproc/rtf-tools/patches/patch-aj b/textproc/rtf-tools/patches/patch-aj
deleted file mode 100644
index d6b951532be..00000000000
--- a/textproc/rtf-tools/patches/patch-aj
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-aj,v 1.1 2006/01/08 20:52:57 joerg Exp $
-
---- rtf2text/text-writer.c.orig 2006-01-08 20:50:34.000000000 +0000
-+++ rtf2text/text-writer.c
-@@ -53,7 +53,7 @@ static void PutLitStr ();
-
- static char *outMap[rtfSC_MaxChar];
-
--static FILE *ostream = stdout;
-+static FILE *ostream;
-
-
- /*
-@@ -63,6 +63,9 @@ static FILE *ostream = stdout;
- void
- WriterInit ()
- {
-+ if (ostream == NULL)
-+ ostream = stdout;
-+
- if (RTFReadOutputMap (outputMapName, outMap, 1) == 0)
- RTFPanic ("Cannot read output map %s", outputMapName);
- }