summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mate-session/gsm-inhibit-dialog.c3
-rw-r--r--mate-session/gsm-manager.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/mate-session/gsm-inhibit-dialog.c b/mate-session/gsm-inhibit-dialog.c
index c79fa18..89f46e0 100644
--- a/mate-session/gsm-inhibit-dialog.c
+++ b/mate-session/gsm-inhibit-dialog.c
@@ -96,7 +96,8 @@ lock_screen (GsmInhibitDialog *dialog)
if ((screen_locker_command = gsm_get_screen_locker_command ()) != NULL) {
GError *error = NULL;
- g_spawn_async (NULL, screen_locker_command, NULL, G_SPAWN_DEFAULT,
+ g_spawn_async (NULL, screen_locker_command, NULL,
+ G_SPAWN_DEFAULT | G_SPAWN_SEARCH_PATH,
NULL, NULL, NULL, &error);
if (error != NULL) {
diff --git a/mate-session/gsm-manager.c b/mate-session/gsm-manager.c
index 4be8eb0..b7ed55b 100644
--- a/mate-session/gsm-manager.c
+++ b/mate-session/gsm-manager.c
@@ -1236,7 +1236,8 @@ manager_perhaps_lock (GsmManager *manager)
}
/* do this sync to ensure it's on the screen when we start suspending */
- g_spawn_sync (NULL, screen_locker_command, NULL, G_SPAWN_DEFAULT,
+ g_spawn_sync (NULL, screen_locker_command, NULL,
+ G_SPAWN_DEFAULT | G_SPAWN_SEARCH_PATH,
NULL, NULL, NULL, NULL, NULL, &error);
if (error) {