From 90fe3a9d0cd766d18d1142d8d6981193a5715643 Mon Sep 17 00:00:00 2001 From: Nikola Pajkovsky Date: Mon, 4 Apr 2011 12:02:27 +0200 Subject: rhbz#692465 - Blacklist doesn't work parse_value() doesn't trim the string. Lest say BlackList = coreutils, mono the parsed list looks like -> 'coreutils', ' mono' Signed-off-by: Nikola Pajkovsky --- src/include/abrtlib.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/include') diff --git a/src/include/abrtlib.h b/src/include/abrtlib.h index d9364673..70dc300c 100644 --- a/src/include/abrtlib.h +++ b/src/include/abrtlib.h @@ -94,6 +94,8 @@ extern "C" { int prefixcmp(const char *str, const char *prefix); #define suffixcmp abrt_suffixcmp int suffixcmp(const char *str, const char *suffix); +#define strtrim abrt_strtrim +char *strtrim(char *str); #define concat_path_file abrt_concat_path_file char *concat_path_file(const char *path, const char *filename); #define append_to_malloced_string abrt_append_to_malloced_string -- cgit