diff options
Diffstat (limited to 'main/open-vm-tools/0010-use-posix-strerror_r-unless-gnu.patch')
-rw-r--r-- | main/open-vm-tools/0010-use-posix-strerror_r-unless-gnu.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/main/open-vm-tools/0010-use-posix-strerror_r-unless-gnu.patch b/main/open-vm-tools/0010-use-posix-strerror_r-unless-gnu.patch deleted file mode 100644 index 62a666ee24..0000000000 --- a/main/open-vm-tools/0010-use-posix-strerror_r-unless-gnu.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 5dd2dbabd4c0535c44321c6c2303acff093c18c7 Mon Sep 17 00:00:00 2001 -From: Natanael Copa <ncopa@alpinelinux.org> -Date: Mon, 2 Jan 2017 14:39:27 +0000 -Subject: [PATCH 10/12] use posix strerror_r unless gnu - ---- - open-vm-tools/lib/err/errPosix.c | 8 +++++--- - 1 file changed, 5 insertions(+), 3 deletions(-) - -diff --git a/open-vm-tools/lib/err/errPosix.c b/open-vm-tools/lib/err/errPosix.c -index c81b4c13..a34e8190 100644 ---- a/open-vm-tools/lib/err/errPosix.c -+++ b/open-vm-tools/lib/err/errPosix.c -@@ -63,11 +63,13 @@ ErrErrno2String(Err_Number errorNumber, // IN - { - char *p; - --#if defined(__linux__) && !defined(__ANDROID__) -+#if defined(__GLIBC__) - p = strerror_r(errorNumber, buf, bufSize); - #else -- p = strerror(errorNumber); --#endif -+ if (strerror_r(errorNumber, buf, bufSize) != 0) -+ snprintf(buf, bufSize, "unknown error %i", errorNumber); -+ p = buf; -+#endif /* defined __GLIBC__ */ - ASSERT(p != NULL); - return p; - } --- -2.19.1 - |