From 434d713861b70f6c6563d6ee50a8e64f14c970d9 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 15 Feb 2018 16:58:00 +0000 Subject: gentoo resync : 15.02.2018 --- net-nntp/suck/files/4.3.3-fputs.patch | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 net-nntp/suck/files/4.3.3-fputs.patch (limited to 'net-nntp/suck/files') 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 +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); -- cgit v1.2.3