aboutsummaryrefslogtreecommitdiff
path: root/session
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2017-05-14 12:31:22 +1200
committerScott Anderson <ascent12@hotmail.com>2017-05-14 12:42:49 +1200
commitce8786721b17febb5132c136213c95a095f13121 (patch)
treeeaf01de1dbe04b9b4117c9d421edc2d6361588ee /session
parent058b8bdf2755da16d38dccc8de715a984fdd620c (diff)
Got it working.
Diffstat (limited to 'session')
-rw-r--r--session/logind.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/session/logind.c b/session/logind.c
index 7799c14b..b6763bf9 100644
--- a/session/logind.c
+++ b/session/logind.c
@@ -226,15 +226,6 @@ static int resume_device(sd_bus_message *msg, void *userdata, sd_bus_error *ret_
goto error;
}
- // The original fd seem to be closed when the message is freed
- // so we just clone it.
- fd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
- if (fd == -1) {
- wlr_log(L_ERROR, "Failed to clone file descriptor for ResumeDevice: %s",
- strerror(errno));
- goto error;
- }
-
// TODO: Use major/minor to make sure the right devices are getting signals
wl_signal_emit(&session->base.device_resumed, &fd);