Update preferences.c

This commit is contained in:
mwalker33 2020-04-21 12:35:13 +10:00 committed by Philippe Teuwen
parent dd09d4074c
commit 3aee4fc5e9

View file

@ -790,7 +790,7 @@ static int setCmdSavePaths (const char *Cmd) {
} else {
if ((strncmp(strOpt, "default", 7) == 0) ||
(strncmp(strOpt, "dump", 4) == 0) ||
(strncmp(strOpt, "trace", 7) == 0)) {
(strncmp(strOpt, "trace", 5) == 0)) {
// Get Path
optLen = param_getlength(Cmd, cmdp) + 1;
@ -814,7 +814,7 @@ static int setCmdSavePaths (const char *Cmd) {
pathItem = spItemCount;
if (strncmp(strOpt, "default", 7) == 0) pathItem = spDefault;
if (strncmp(strOpt, "dump", 4) == 0) pathItem = spDump;
if (strncmp(strOpt, "trace", 7) == 0) pathItem = spTrace;
if (strncmp(strOpt, "trace", 5) == 0) pathItem = spTrace;
if (pathItem < spItemCount) {
if (strcmp(newValue, session.defaultPaths[pathItem]) != 0) {