summaryrefslogtreecommitdiff
path: root/app-text/xml2doc/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-text/xml2doc/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-text/xml2doc/files')
-rw-r--r--app-text/xml2doc/files/xml2doc-pointer_fix.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/app-text/xml2doc/files/xml2doc-pointer_fix.patch b/app-text/xml2doc/files/xml2doc-pointer_fix.patch
deleted file mode 100644
index b6adabe3c1a3..000000000000
--- a/app-text/xml2doc/files/xml2doc-pointer_fix.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -NurdpB xml2doc/src/output_info.c xml2doc-patched/src/output_info.c
---- xml2doc/src/output_info.c 2003-04-25 05:11:27.000000000 -0500
-+++ xml2doc-patched/src/output_info.c 2007-03-14 15:07:59.000000000 -0500
-@@ -9,11 +9,11 @@ void output_info()
- *subject = xmlGetProp(Doc[n].cur,"subject"),
- *keywords = xmlGetProp(Doc[n].cur,"keywords"),
- *trapped = xmlGetProp(Doc[n].cur,"trapped");
-- struct time_t *timet;
-- struct tm *clk;
--
-- time((time_t *)&timet);
-- clk=localtime((const time_t *)&timet);
-+ time_t timet;
-+ struct tm *clk;
-+
-+ time(&timet);
-+ clk=localtime(&timet);
-
- switch(DocS.output)
- {