rename ucimap_data::section to ptr
authorFelix Fietkau <nbd@openwrt.org>
Tue, 1 Sep 2009 01:23:01 +0000 (03:23 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Tue, 1 Sep 2009 01:23:01 +0000 (03:23 +0200)
ucimap.c
ucimap.h

index 7637bd5..7f2cf38 100644 (file)
--- a/ucimap.c
+++ b/ucimap.c
@@ -193,11 +193,11 @@ ucimap_handle_fixup(struct uci_map *map, struct uci_fixup *f)
 
        switch(f->type & UCIMAP_TYPE) {
        case UCIMAP_SIMPLE:
-               f->data->section = ptr;
+               f->data->ptr = ptr;
                break;
        case UCIMAP_LIST:
                list = f->data->list;
-               list->item[list->n_items++].section = ptr;
+               list->item[list->n_items++].ptr = ptr;
                break;
        }
        return true;
index d9aa2d9..d56d8ef 100644 (file)
--- a/ucimap.h
+++ b/ucimap.h
@@ -82,7 +82,7 @@ union ucimap_data {
        int i;
        bool b;
        char *s;
-       void *section;
+       void *ptr;
        struct ucimap_list *list;
 };