X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=uci.h;h=65fb7d34cb1fb00a8804de0a2197ef5fb4a01725;hb=bc7b118f0a40709c985b54c96d826e9057c9f0dd;hp=6dc00f177fd7af51a74eaef8918282fcd258c4b9;hpb=854f7c5d08cd37aeb7414e26ed6666fad26f5f7a;p=project%2Fuci.git diff --git a/uci.h b/uci.h index 6dc00f1..65fb7d3 100644 --- a/uci.h +++ b/uci.h @@ -89,7 +89,7 @@ extern int uci_cleanup(struct uci_context *ctx); * * @ctx: uci context */ -extern char **uci_list_configs(struct uci_context *ctx); +extern char **uci_list_configs(); /* UCI data structures */ @@ -112,6 +112,7 @@ struct uci_parse_context /* private: */ struct uci_config *cfg; + struct uci_section *section; FILE *file; char *buf; char *reason; @@ -148,7 +149,7 @@ struct uci_option #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) #endif -#define uci_list_empty(list) (list->next == ptr) +#define uci_list_empty(list) ((list)->next == (list)) #define uci_list_entry(_type, _ptr) \ ((struct uci_ ## _type *) ((char *)(_ptr) - offsetof(struct uci_ ## _type,list)))