From 1796f823363f38cfab6d0a7cc5882e0becbd8d91 Mon Sep 17 00:00:00 2001 From: Ulrich Sibiller Date: Thu, 30 Jan 2020 01:44:10 +0100 Subject: remove obsolete pending patches The changes are either applied in the current version or the affected file is no longer existing. --- .../fix-fprintf-usage.patch | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 debian/patches-pending-evaluation/fix-fprintf-usage.patch (limited to 'debian/patches-pending-evaluation/fix-fprintf-usage.patch') diff --git a/debian/patches-pending-evaluation/fix-fprintf-usage.patch b/debian/patches-pending-evaluation/fix-fprintf-usage.patch deleted file mode 100644 index 4abda6064..000000000 --- a/debian/patches-pending-evaluation/fix-fprintf-usage.patch +++ /dev/null @@ -1,31 +0,0 @@ -From: Vitaly Lipatov -Date: Wed, 3 Jun 2009 00:49:01 +0000 (+0400) -Subject: fix fprintf using -X-Git-Tag: 3.3.0-alt16.1~1^2 -X-Git-Url: http://git.etersoft.ru?p=rx%2Fnx.git;a=commitdiff_plain;h=f68888aab5c92e99f398f5fe7407edf09e2c86ce - - fix fprintf using - -+--- a/nx-X11/config/imake/imake.c -++++ b/nx-X11/config/imake/imake.c -+@@ -1015,7 +1015,7 @@ get_libc_version(FILE *inFile) -+ abort (); -+ -+ while (fgets (command, len, fp)) -+- fprintf (inFile, command); -++ fwrite (command, strlen(command), 1, inFile); -+ -+ len = pclose (fp); -+ remove (aout); -+ -+--- a/nx-X11/extras/rman/rman.c.orig 2009-06-03 04:29:39 +0400 -++++ b/nx-X11/extras/rman/rman.c 2009-06-03 05:19:07 +0400 -+@@ -1432,7 +1432,7 @@ HTML(enum command cmd) -+ break; -+ case BEGINSECTION: break; -+ case ENDSECTION: -+- if (sectheadid==NAME && message!=NULL) printf(message); -++ if (sectheadid==NAME && message!=NULL) printf("%s",message); -+ break; -+ case BEGINSUBSECTION: break; -+ case ENDSUBSECTION: break; -- cgit v1.2.3