diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-03 18:40:05 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-03 18:40:05 +0200 |
commit | 6a3678683ea811786d2e7f433d9e8271c1072ca3 (patch) | |
tree | 142a2ce411eb91ff5198180a92aebf4cb3da1a8e /inc | |
parent | 9b962ae692d685ac4044d8a5fd3c7e8637eaee53 (diff) | |
download | abrt-6a3678683ea811786d2e7f433d9e8271c1072ca3.tar.gz abrt-6a3678683ea811786d2e7f433d9e8271c1072ca3.tar.xz abrt-6a3678683ea811786d2e7f433d9e8271c1072ca3.zip |
abrtd: simplify .conf file saving
-2k:
text data bss dec hex filename
197276 2624 2352 202252 3160c abrt.t4/abrt-0.0.8/src/Daemon/.libs/abrtd
195513 2656 2352 200521 30f49 abrt.t6/abrt-0.0.8/src/Daemon/.libs/abrtd
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'inc')
-rw-r--r-- | inc/abrt_types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/abrt_types.h b/inc/abrt_types.h index 08f70906..3ac31bc6 100644 --- a/inc/abrt_types.h +++ b/inc/abrt_types.h @@ -36,7 +36,7 @@ typedef std::map<std::string, vector_pair_string_string_t> map_vector_pair_strin /* Report() method return type */ typedef std::map<std::string, vector_strings_t> report_status_t; -/* Holds result of .conf file parsing */ -typedef std::map<std::string, std::string> map_plugin_settings_t; +/* Holds result of .conf file section parsing: map["name"] = "value" */ +typedef map_string_t map_plugin_settings_t; #endif |