Don't set XDG_SESSION_TYPE unless logind SetType succeeds

This commit is contained in:
Ryan Walklin 2020-06-26 08:55:04 +12:00 committed by Simon Ser
parent e81d2086c0
commit 7e990a2991
1 changed files with 6 additions and 2 deletions

View File

@ -257,12 +257,16 @@ static bool set_type(struct logind_session *session) {
sd_bus_error_free(&error);
sd_bus_message_unref(msg);
if (ret < 0) {
return false;
}
ret = setenv("XDG_SESSION_TYPE", "wayland", 1);
if (ret < 0) {
wlr_log(WLR_ERROR, "Failed to set XDG_SESSION_TYPE for session");
return false;
}
return ret >= 0;
return true;
}
static void release_control(struct logind_session *session) {