summaryrefslogtreecommitdiff
path: root/plugins/shellexec
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-29 06:58:12 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-29 06:58:12 +0200
commit87e3b467e0bd62e43d6eb3547574c2378264ef89 (patch)
tree6377cdd68e0cea1d7243612c60e3d6870a46d19d /plugins/shellexec
parentc27c2b5cc332cd615b2ade47c92acbd2780e6eea (diff)
run shellexec actions in background (appends & to shell commands)
Diffstat (limited to 'plugins/shellexec')
-rw-r--r--plugins/shellexec/shellexec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/shellexec/shellexec.c b/plugins/shellexec/shellexec.c
index 142004c0..7e65c52a 100644
--- a/plugins/shellexec/shellexec.c
+++ b/plugins/shellexec/shellexec.c
@@ -182,6 +182,7 @@ format_shell_command (DB_playItem_t *it, const char *format)
}
}
strcpy (res_p, trailing);
+ strcat (res_p, "&");
return res;
}