aboutsummaryrefslogtreecommitdiff
path: root/backend/session/direct-ipc.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-07-09 16:12:20 -0700
committerGitHub <noreply@github.com>2018-07-09 16:12:20 -0700
commit2518de655c7278728736d22549656c639e4c92f0 (patch)
treeacd08ceb9709eb25541fa02fbc533a7c6a99dbad /backend/session/direct-ipc.c
parente78d72f42e10b43a76ef5ba6b8c4b3b470b25245 (diff)
parent7cbef152063e1fbb24e6204339ff4587a74be04b (diff)
Merge pull request #1126 from emersion/wlr-log-prefix
util: add wlr_ prefix to log symbols
Diffstat (limited to 'backend/session/direct-ipc.c')
-rw-r--r--backend/session/direct-ipc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/session/direct-ipc.c b/backend/session/direct-ipc.c
index 2dd777c8..5fdb95ac 100644
--- a/backend/session/direct-ipc.c
+++ b/backend/session/direct-ipc.c
@@ -32,7 +32,7 @@ static bool have_permissions(void) {
cap_flag_value_t val;
if (!cap || cap_get_flag(cap, CAP_SYS_ADMIN, CAP_PERMITTED, &val) || val != CAP_SET) {
- wlr_log(L_ERROR, "Do not have CAP_SYS_ADMIN; cannot become DRM master");
+ wlr_log(WLR_ERROR, "Do not have CAP_SYS_ADMIN; cannot become DRM master");
cap_free(cap);
return false;
}
@@ -44,7 +44,7 @@ static bool have_permissions(void) {
static bool have_permissions(void) {
#ifdef __linux__
if (geteuid() != 0) {
- wlr_log(L_ERROR, "Do not have root privileges; cannot become DRM master");
+ wlr_log(WLR_ERROR, "Do not have root privileges; cannot become DRM master");
return false;
}
#endif
@@ -229,13 +229,13 @@ int direct_ipc_init(pid_t *pid_out) {
int sock[2];
if (socketpair(AF_UNIX, SOCK_SEQPACKET, 0, sock) < 0) {
- wlr_log_errno(L_ERROR, "Failed to create socket pair");
+ wlr_log_errno(WLR_ERROR, "Failed to create socket pair");
return -1;
}
pid_t pid = fork();
if (pid < 0) {
- wlr_log_errno(L_ERROR, "Fork failed");
+ wlr_log_errno(WLR_ERROR, "Fork failed");
close(sock[0]);
close(sock[1]);
return -1;