From 5c48aac33b191b30f36e777be836441e211166b6 Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Wed, 27 Jul 2016 11:06:24 -0500 Subject: [PATCH] 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 Reviewed-by: Yong Bakos Reviewed-by: Giulio Camuffo Reviewed-by: Daniel Stone --- cursor/os-compatibility.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4