mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-26 21:55:44 +07:00
logind: create private subdirectory for X11 socket
This commit is contained in:
parent
be81bfc4a7
commit
0254daedb1
@ -380,13 +380,15 @@ static int session_link_x11_socket(Session *s) {
|
|||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
t = strappend(s->user->runtime_path, "/display");
|
t = strappend(s->user->runtime_path, "/X11/display");
|
||||||
if (!t) {
|
if (!t) {
|
||||||
log_error("Out of memory");
|
log_error("Out of memory");
|
||||||
free(f);
|
free(f);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mkdir_parents(t, 0755);
|
||||||
|
|
||||||
if (link(f, t) < 0) {
|
if (link(f, t) < 0) {
|
||||||
if (errno == EEXIST) {
|
if (errno == EEXIST) {
|
||||||
unlink(t);
|
unlink(t);
|
||||||
@ -638,7 +640,7 @@ static int session_unlink_x11_socket(Session *s) {
|
|||||||
|
|
||||||
s->user->display = NULL;
|
s->user->display = NULL;
|
||||||
|
|
||||||
t = strappend(s->user->runtime_path, "/display");
|
t = strappend(s->user->runtime_path, "/X11/display");
|
||||||
if (!t) {
|
if (!t) {
|
||||||
log_error("Out of memory");
|
log_error("Out of memory");
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
Loading…
Reference in New Issue
Block a user