static int uci_do_section_cmd(int cmd, int argc, char **argv)
{
+ struct uci_package *p = NULL;
+ struct uci_element *e = NULL;
char *package = NULL;
char *section = NULL;
char *option = NULL;
char *value = NULL;
char **ptr = NULL;
- struct uci_package *p = NULL;
- struct uci_element *e = NULL;
+ int ret = UCI_OK;
if (argc != 2)
return 255;
printf("%s\n", value);
break;
case CMD_RENAME:
- if (uci_rename(ctx, p, section, option, value) != UCI_OK) {
- uci_perror(ctx, appname);
- return 1;
- }
+ ret = uci_rename(ctx, p, section, option, value);
break;
case CMD_SET:
- if (uci_set(ctx, p, section, option, value) != UCI_OK) {
- uci_perror(ctx, appname);
- return 1;
- }
+ ret = uci_set(ctx, p, section, option, value);
break;
case CMD_DEL:
- if (uci_delete(ctx, p, section, option) != UCI_OK) {
- uci_perror(ctx, appname);
- return 1;
- }
+ ret = uci_delete(ctx, p, section, option);
break;
}
return 0;
/* save changes, but don't commit them yet */
- if (uci_save(ctx, p) != UCI_OK) {
+ if (ret == UCI_OK)
+ ret = uci_save(ctx, p);
+
+ if (ret != UCI_OK) {
uci_perror(ctx, appname);
return 1;
}