Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 862795 | Differences between
and this patch

Collapse All | Expand All

(-)a/open-vm-tools/lib/hgfsServer/hgfsServerLinux.c (-3 / +5 lines)
Lines 105-115 typedef struct DirectoryEntry { Link Here
105
#endif
105
#endif
106
106
107
/*
107
/*
108
 * ALLPERMS (mode 07777) and ACCESSPERMS (mode 0777) are not defined in the
108
 * ALLPERMS (mode 07777) and ACCESSPERMS (mode 0777) are not specified in
109
 * Solaris version of <sys/stat.h>.
109
 * POSIX.
110
 */
110
 */
111
#ifdef sun
111
#ifndef ACCESSPERMS
112
#   define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO)
112
#   define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO)
113
#endif
114
#ifndef ALLPERMS
113
#   define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)
115
#   define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)
114
#endif
116
#endif
115
117
(-)a/open-vm-tools/services/plugins/dndcp/dnd/dndLinux.c (-2 / +1 lines)
Lines 53-59 Link Here
53
53
54
#define DND_ROOTDIR_PERMS     (S_IRWXU | S_IRWXG | S_IRWXO)
54
#define DND_ROOTDIR_PERMS     (S_IRWXU | S_IRWXG | S_IRWXO)
55
#define DND_STAGINGDIR_PERMS  (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)
55
#define DND_STAGINGDIR_PERMS  (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)
56
#ifdef sun
56
#ifndef ACCESSPERMS
57
#define ACCESSPERMS           (S_IRWXU | S_IRWXG | S_IRWXO)
57
#define ACCESSPERMS           (S_IRWXU | S_IRWXG | S_IRWXO)
58
#endif
58
#endif
59
#ifdef __ANDROID__
59
#ifdef __ANDROID__
Lines 62-68 Link Here
62
 */
62
 */
63
#define NO_SETMNTENT
63
#define NO_SETMNTENT
64
#define NO_ENDMNTENT
64
#define NO_ENDMNTENT
65
#define ACCESSPERMS           (S_IRWXU | S_IRWXG | S_IRWXO)
66
#endif
65
#endif
67
66
68
67

Return to bug 862795