summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2018-02-14 14:43:05 +0000
committerAndreas Sturmlechner <asturm@gentoo.org>2018-02-15 14:47:06 +0100
commitd65d2755d5c5abb31a846991847046f71748cb9e (patch)
treeb3e3898b676b67e9f32fa8900b478101c4779455 /net-nntp/suck/files
parentnet-fs/nfs-utils: correctly move /var/lib/nfs (diff)
downloadgentoo-d65d2755d5c5abb31a846991847046f71748cb9e.tar.gz
gentoo-d65d2755d5c5abb31a846991847046f71748cb9e.tar.bz2
gentoo-d65d2755d5c5abb31a846991847046f71748cb9e.zip
net-nntp/suck: Add version 4.3.3
Closes: https://bugs.gentoo.org/232581 Closes: https://bugs.gentoo.org/622880 Package-Manager: Portage-2.3.19, Repoman-2.3.6 Closes: https://github.com/gentoo/gentoo/pull/7185
Diffstat (limited to 'net-nntp/suck/files')
-rw-r--r--net-nntp/suck/files/4.3.3-fputs.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/net-nntp/suck/files/4.3.3-fputs.patch b/net-nntp/suck/files/4.3.3-fputs.patch
new file mode 100644
index 000000000000..df38f1d4316a
--- /dev/null
+++ b/net-nntp/suck/files/4.3.3-fputs.patch
@@ -0,0 +1,25 @@
+From 440c3c39c51c89c0a5bc53850e9b75b142a39bd2 Mon Sep 17 00:00:00 2001
+From: Michael Vetter <jubalh@iodoru.org>
+Date: Wed, 14 Feb 2018 15:02:22 +0100
+Subject: [PATCH] Use fputs instead of fput
+
+fput() seems to be non-standard.
+See commit cb0aadd0a2f16a09bc972d648b864a1fd541e75f
+Now we have the original patch.
+---
+ lpost.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lpost.c b/lpost.c
+index a2c0d29..39bb17e 100644
+--- a/lpost.c
++++ b/lpost.c
+@@ -42,7 +42,7 @@ int main(int argc,char *argv[]) {
+ }
+ }
+ else {
+- (void) fput(line, pfp);
++ (void) fputs(line, pfp);
+ }
+ } /* end while */
+ exit(retval);