From 569e5b71d9b5753306a32936e73ecad94ce9c06af900b7604ee0b23343688df1 Mon Sep 17 00:00:00 2001 From: Stefan Dirsch Date: Wed, 7 May 2014 14:30:14 +0000 Subject: [PATCH] Accepting request 232940 from home:tobijk:X11:XOrg remove the superfluous patch file OBS-URL: https://build.opensuse.org/request/show/232940 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/libFS?expand=0&rev=17 --- U_fix_build_with_xtrans_1.3.patch | 34 ------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 U_fix_build_with_xtrans_1.3.patch diff --git a/U_fix_build_with_xtrans_1.3.patch b/U_fix_build_with_xtrans_1.3.patch deleted file mode 100644 index 280b2f6..0000000 --- a/U_fix_build_with_xtrans_1.3.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 19ca53de0aae67b1f23085c832b445576c6a0b25 Mon Sep 17 00:00:00 2001 -From: Adam Jackson -Date: Fri, 01 Nov 2013 15:14:58 +0000 -Subject: Fix build with xtrans 1.3 - -->Readv was in fact being used, oops. Just call straight down to -readv() instead. - -Reviewed-by: Peter Harris -Signed-off-by: Adam Jackson ---- -diff --git a/src/FSlibInt.c b/src/FSlibInt.c -index edc66ba..0fabc96 100644 ---- a/src/FSlibInt.c -+++ b/src/FSlibInt.c -@@ -58,6 +58,7 @@ in this Software without prior written authorization from The Open Group. - #endif - #include - #include "FSlibint.h" -+#include - #include - - static void _EatData32 ( FSServer *svr, unsigned long n ); -@@ -360,7 +361,7 @@ _FSReadPad( - size += iov[1].iov_len; - - ESET(0); -- while ((bytes_read = _FSTransReadv(svr->trans_conn, iov, 2)) != size) { -+ while ((bytes_read = readv(svr->trans_conn->fd, iov, 2)) != size) { - - if (bytes_read > 0) { - size -= bytes_read; --- -cgit v0.9.0.2-2-gbebe