Fix quote stripping

Let's not use !strcmp(…) anymore.
This commit is contained in:
emersion 2019-02-05 12:52:02 +01:00 committed by Drew DeVault
parent 5d770d028a
commit 610794d4e3
1 changed files with 2 additions and 1 deletions

View File

@ -254,7 +254,8 @@ list_t *execute_command(char *_exec, struct sway_seat *seat,
//TODO better handling of argv
int argc;
char **argv = split_args(cmd, &argc);
if (!strcmp(argv[0], "exec") && !strcmp(argv[0], "exec_always")) {
if (strcmp(argv[0], "exec") != 0 &&
strcmp(argv[0], "exec_always") != 0) {
int i;
for (i = 1; i < argc; ++i) {
if (*argv[i] == '\"' || *argv[i] == '\'') {