aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libseat/backend/logind.c4
-rw-r--r--libseat/backend/seatd.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/libseat/backend/logind.c b/libseat/backend/logind.c
index c6f2aaf..aa659a6 100644
--- a/libseat/backend/logind.c
+++ b/libseat/backend/logind.c
@@ -213,7 +213,7 @@ static int poll_connection(struct backend_logind *backend, int timeout) {
return 0;
}
-static int dispatch_background(struct libseat *base, int timeout) {
+static int dispatch_and_execute(struct libseat *base, int timeout) {
struct backend_logind *backend = backend_logind_from_libseat_backend(base);
if (backend->initial_setup) {
backend->initial_setup = false;
@@ -688,5 +688,5 @@ const struct seat_impl logind_impl = {
.close_device = close_device,
.switch_session = switch_session,
.get_fd = get_fd,
- .dispatch = dispatch_background,
+ .dispatch = dispatch_and_execute,
};
diff --git a/libseat/backend/seatd.c b/libseat/backend/seatd.c
index 3600b50..96b4681 100644
--- a/libseat/backend/seatd.c
+++ b/libseat/backend/seatd.c
@@ -326,7 +326,7 @@ static int get_fd(struct libseat *base) {
return backend->connection.fd;
}
-static int dispatch_background(struct libseat *base, int timeout) {
+static int dispatch_and_execute(struct libseat *base, int timeout) {
struct backend_seatd *backend = backend_seatd_from_libseat_backend(base);
if (backend->error) {
errno = ENOTCONN;
@@ -575,7 +575,7 @@ const struct seat_impl seatd_impl = {
.close_device = close_device,
.switch_session = switch_session,
.get_fd = get_fd,
- .dispatch = dispatch_background,
+ .dispatch = dispatch_and_execute,
};
#ifdef BUILTIN_ENABLED
@@ -660,6 +660,6 @@ const struct seat_impl builtin_impl = {
.close_device = close_device,
.switch_session = switch_session,
.get_fd = get_fd,
- .dispatch = dispatch_background,
+ .dispatch = dispatch_and_execute,
};
#endif