Skip to content

Commit

Permalink
libzfs_FQ.c: bug: Fix 'FQoverride_gtnd()' strtok() usage
Browse files Browse the repository at this point in the history
  • Loading branch information
TerraTech committed Feb 16, 2021
1 parent af02cff commit 28e1c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/libzfs/libzfs_FQ.c
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ FQoverride_gtnd(const char *gtnd_skip) {
return (B_TRUE);
}

env_skip = strtok(envdup, " ");
env_skip = strtok(NULL, " ");
}

free(envdup);
Expand Down

0 comments on commit 28e1c80

Please sign in to comment.