aboutsummaryrefslogtreecommitdiff
path: root/utils/open-vm-tools/patches/0010-Use-uintmax_t-for-handling-rlim_t.patch
diff options
context:
space:
mode:
Diffstat (limited to 'utils/open-vm-tools/patches/0010-Use-uintmax_t-for-handling-rlim_t.patch')
-rw-r--r--utils/open-vm-tools/patches/0010-Use-uintmax_t-for-handling-rlim_t.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/utils/open-vm-tools/patches/0010-Use-uintmax_t-for-handling-rlim_t.patch b/utils/open-vm-tools/patches/0010-Use-uintmax_t-for-handling-rlim_t.patch
deleted file mode 100644
index 6d50012ae..000000000
--- a/utils/open-vm-tools/patches/0010-Use-uintmax_t-for-handling-rlim_t.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -urN a/lib/hgfsServer/hgfsServerLinux.c b/lib/hgfsServer/hgfsServerLinux.c
---- a/lib/hgfsServer/hgfsServerLinux.c
-+++ b/lib/hgfsServer/hgfsServerLinux.c
-@@ -5295,8 +5295,8 @@
- goto exit;
- }
-
-- LOG(6, "%s: File Size limits: 0x%"FMT64"x 0x%"FMT64"x\n",
-- __FUNCTION__, fileSize.rlim_cur, fileSize.rlim_max);
-+ LOG(6, "%s: File Size limits: 0x%jx 0x%jx\n",
-+ __FUNCTION__, (uintmax_t)fileSize.rlim_cur, (uintmax_t)fileSize.rlim_max);
-
- /*
- * Check the offset is within the file size range.