blob: 2ad385a159983ae9284e78f34e28ec656ef18d68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Index: uci.git/list.c
===================================================================
--- uci.git.orig/list.c 2008-08-26 12:31:34.000000000 +0200
+++ uci.git/list.c 2008-08-26 21:09:10.000000000 +0200
@@ -398,7 +398,7 @@
e = uci_lookup_list(&ptr->p->sections, ptr->section);
if (!e)
- goto abort;
+ goto notfound;
ptr->last = e;
ptr->s = uci_to_section(e);
@@ -406,7 +406,7 @@
if (ptr->option) {
e = uci_lookup_list(&ptr->s->options, ptr->option);
if (!e)
- goto abort;
+ goto notfound;
ptr->o = uci_to_option(e);
ptr->last = e;
|