X-Git-Url: http://git.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=ucimap.h;h=865c45a266ede6524d8eba05de04a0ab1b53e25c;hp=adb7004e5337ff7ef00c27d964fc77f26d089df6;hb=75c9a5d0faf426863f52094fcc77d11e39786581;hpb=95967daea5d1be988b4d25280fcea9ae2b6c52cd diff --git a/ucimap.h b/ucimap.h index adb7004..865c45a 100644 --- a/ucimap.h +++ b/ucimap.h @@ -84,13 +84,13 @@ struct uci_sectmap { unsigned int alloc_len; /* give the caller time to initialize the preallocated struct */ - int (*init_section)(struct uci_map *map, void *section, struct uci_section *s); + int (*init)(struct uci_map *map, void *section, struct uci_section *s); /* pass the fully processed struct to the callback after the section end */ - int (*add_section)(struct uci_map *map, void *section); + int (*add)(struct uci_map *map, void *section); /* let the callback clean up its own stuff in the section */ - int (*free_section)(struct uci_map *map, void *section); + int (*free)(struct uci_map *map, void *section); /* list of option mappings for this section */ struct uci_optmap *options;