diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-29 09:31:20 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-29 09:31:20 -0700 |
commit | 4215394e00c9c6e9d36293112f30b1ed45654b71 (patch) | |
tree | 1fe23acab1b385ccee11cd330cb063d95309e0c1 /src | |
parent | 556eeaec4e31814fd62d2c1394958ab4e7887e79 (diff) | |
download | vyatta-cfg-4215394e00c9c6e9d36293112f30b1ed45654b71.tar.gz vyatta-cfg-4215394e00c9c6e9d36293112f30b1ed45654b71.zip |
type_to_name returns immutable string
Don't want accidental errors
Diffstat (limited to 'src')
-rw-r--r-- | src/cli_new.c | 2 | ||||
-rw-r--r-- | src/cli_val.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cli_new.c b/src/cli_new.c index d9e1687..34f8af0 100644 --- a/src/cli_new.c +++ b/src/cli_new.c @@ -2103,7 +2103,7 @@ void touch() free(command); } -char *type_to_name(vtw_type_e type) { +const char *type_to_name(vtw_type_e type) { switch(type) { case INT_TYPE: return("u32"); case IPV4_TYPE: return("ipv4"); diff --git a/src/cli_val.h b/src/cli_val.h index c9d59a6..fa30479 100644 --- a/src/cli_val.h +++ b/src/cli_val.h @@ -187,7 +187,7 @@ extern void free_val(valstruct *val); extern void my_free(void *ptr); extern void touch(void); extern void dump_log(int argc, char **argv); -extern char *type_to_name(vtw_type_e type); +extern const char *type_to_name(vtw_type_e type); extern boolean execute_list(vtw_node *cur, vtw_def *def); extern void touch_dir(const char *dp); |