constify
authorFelix Fietkau <nbd@openwrt.org>
Mon, 5 Sep 2011 04:58:55 +0000 (06:58 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 5 Sep 2011 04:58:55 +0000 (06:58 +0200)
config.c
config.h

index 31ebb8d..b184165 100644 (file)
--- a/config.c
+++ b/config.c
@@ -140,7 +140,7 @@ config_parse_bridge_interface(struct uci_section *s)
 }
 
 void
-config_set_state(struct config_state *state, struct blob_attr *attr)
+config_set_state(struct config_state *state, const struct blob_attr *attr)
 {
        state->data = malloc(blob_pad_len(attr));
        if (!state->data)
index 49a81e4..22a562f 100644 (file)
--- a/config.h
+++ b/config.h
@@ -28,7 +28,7 @@ struct config_state {
        unsigned int version;
 };
 
-void config_set_state(struct config_state *state, struct blob_attr *attr);
+void config_set_state(struct config_state *state, const struct blob_attr *attr);
 
 
 #endif