diff options
| author | Derek Foreman <derekf@osg.samsung.com> | 2016-07-27 11:06:24 -0500 |
|---|---|---|
| committer | Daniel Stone <daniels@collabora.com> | 2016-11-21 09:58:25 +0000 |
| commit | 5c48aac33b191b30f36e777be836441e211166b6 (patch) | |
| tree | 50f84fe6fc78ff311d9f360fdc333c4f767adf69 /cursor | |
| parent | util: Improve documentation of wl_argument (diff) | |
| download | wayland-5c48aac33b191b30f36e777be836441e211166b6.tar wayland-5c48aac33b191b30f36e777be836441e211166b6.tar.gz wayland-5c48aac33b191b30f36e777be836441e211166b6.tar.bz2 wayland-5c48aac33b191b30f36e777be836441e211166b6.tar.lz wayland-5c48aac33b191b30f36e777be836441e211166b6.tar.xz wayland-5c48aac33b191b30f36e777be836441e211166b6.tar.zst wayland-5c48aac33b191b30f36e777be836441e211166b6.zip | |
cursor: Remove "weston" from anonymous shm filenames
This mildly confused me during some debugging, so I guess it wouldn't
hurt to make the filename more indicative of where it was actually
created.
Signed-off-by: Derek Foreman <derekf@osg.samsung.com>
Reviewed-by: Yong Bakos <ybakos@humanoriented.com>
Reviewed-by: Giulio Camuffo <giuliocamuffo@gmail.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Diffstat (limited to 'cursor')
| -rw-r--r-- | cursor/os-compatibility.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cursor/os-compatibility.c b/cursor/os-compatibility.c index d7d4b33..e972d21 100644 --- a/cursor/os-compatibility.c +++ b/cursor/os-compatibility.c @@ -103,7 +103,7 @@ create_tmpfile_cloexec(char *tmpname) int os_create_anonymous_file(off_t size) { - static const char template[] = "/weston-shared-XXXXXX"; + static const char template[] = "/wayland-cursor-shared-XXXXXX"; const char *path; char *name; int fd; |
