From: John Crispin Date: Mon, 17 Feb 2014 12:15:17 +0000 (+0000) Subject: uci_blob: add an element to uci_blob_param_list to allow the tracking of validation... X-Git-Url: http://git.openwrt.org/?p=project%2Fuci.git;a=commitdiff_plain;h=2549fb84542a6b59a1a21dfd7fc9fd51700c8ce3 uci_blob: add an element to uci_blob_param_list to allow the tracking of validation info Signed-off-by: John Crispin --- diff --git a/uci_blob.h b/uci_blob.h index d2294d8..db97128 100644 --- a/uci_blob.h +++ b/uci_blob.h @@ -25,6 +25,7 @@ struct uci_blob_param_list { int n_params; const struct blobmsg_policy *params; const struct uci_blob_param_info *info; + const char * const *validate; int n_next; const struct uci_blob_param_list *next[];