Allow spaces in background file paths

This commit is contained in:
Brian Ashworth 2018-09-13 16:36:09 -04:00
parent 5f9be1e1aa
commit 0b64cce733
2 changed files with 3 additions and 3 deletions

View file

@ -71,7 +71,7 @@ struct cmd_results *output_cmd_background(int argc, char **argv) {
return cmd_res;
}
free(src);
src = strdup(p.we_wordv[0]);
src = join_args(p.we_wordv, p.we_wordc);
wordfree(&p);
if (!src) {
wlr_log(WLR_ERROR, "Failed to duplicate string");