cli: drop redundant uci_add_delta_path() call for -P
authorRafał Miłecki <rafal@milecki.pl>
Tue, 16 Aug 2022 10:08:51 +0000 (12:08 +0200)
committerRafał Miłecki <rafal@milecki.pl>
Sun, 28 Aug 2022 11:05:10 +0000 (13:05 +0200)
commit5de3871898e1ef4aec773e4dc9dc18acf52acee4
tree3f3934bfb78e87f42a2c0cfb42eddae5ad632e8a
parentf84f49f00fb70364f58b4cce72f1796a7190d370
cli: drop redundant uci_add_delta_path() call for -P

savedir is always present in the list of delta paths. It's guaranteed by
1. uci_alloc_context() which sets defaults
2. uci_set_savedir() which allows changing savedir

Calling uci_add_delta_path() with ctx->savedir argument seems to always
return UCI_ERR_DUPLICATE.

Fixes: 2b4872345ab2b ("make use of the history path feature in the cli")
Cc: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
cli.c