aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-05-05 23:24:02 +0100
committerGitHub <noreply@github.com>2018-05-05 23:24:02 +0100
commit72ce50737d2ac47fdf818e0bdada375ba1208d10 (patch)
tree03fd40143d3c130f47d4182735453f4f30cfc972 /sway
parentc96ac2ff2a61571dc34f3a68dbe13a9b9c5884de (diff)
parent1daf69477e1a7c36a8a57ccc4d7fe6cf70736a88 (diff)
Merge pull request #1926 from RyanDwyer/fix-setenv-path
Fix PATH setenv() in exec_always
Diffstat (limited to 'sway')
-rw-r--r--sway/commands/exec_always.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/exec_always.c b/sway/commands/exec_always.c
index b3078640..f631d7d8 100644
--- a/sway/commands/exec_always.c
+++ b/sway/commands/exec_always.c
@@ -82,7 +82,7 @@ struct cmd_results *cmd_exec_always(int argc, char **argv) {
// Append /usr/lib/sway to PATH
strcat(path, extra_path);
- if (!setenv("PATH", path, 1)) {
+ if (setenv("PATH", path, 1) == -1) {
free(path);
wlr_log(L_ERROR, "exec_always: Unable to set PATH");
exit(EXIT_FAILURE);