diff options
author | Christian Pointner <equinox@helsinki.at> | 2009-11-04 04:19:53 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2009-11-04 04:19:53 (GMT) |
commit | 14e460a9bcaadaa2dd206a5c701814cd5e1d4648 (patch) | |
tree | 7e69c25c510765b143a02985d505e5f011ba5a68 /options.c | |
parent | 300483ff8651af328adeb83834dac0dc3442407d (diff) |
improved key value storage print
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -295,5 +295,6 @@ void options_print(options_t* opt) printf("conf_file: '%s'\n", opt->conf_file_); printf("command_sock: '%s'\n", opt->command_sock_); printf("switch_dev: '%s'\n", opt->switch_dev_); - key_value_storage_print(&opt->alias_table_); + printf("alias_table: \n"); + key_value_storage_print(&opt->alias_table_, " '", "' -> '", "'\n"); } |