summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-11-03 19:44:39 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-11-03 19:44:39 +0100
commit76eea28e05500146cd79633f6935a8368bee6ff1 (patch)
tree3db1e31607269383145d95e2d536f9c77e7a89b4 /inc
parenta8f39ad24b77926929fe6780dfeba44ac0558a92 (diff)
downloadabrt-76eea28e05500146cd79633f6935a8368bee6ff1.tar.gz
abrt-76eea28e05500146cd79633f6935a8368bee6ff1.tar.xz
abrt-76eea28e05500146cd79633f6935a8368bee6ff1.zip
extend list_possible_events() to be able to return list _for a specified dir_
Example: post-create analyze reanalyze report report_Bugzilla report_Logger post-create reanalyze report_Bugzilla report_Logger Note that "analyze" and "report" steps arent't listed for TEST_DIR because there is not a single matching rule for them. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'inc')
-rw-r--r--inc/abrtlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/abrtlib.h b/inc/abrtlib.h
index d9b74975..94e7ca32 100644
--- a/inc/abrtlib.h
+++ b/inc/abrtlib.h
@@ -224,7 +224,7 @@ static inline struct run_event_state *new_run_event_state()
static inline void free_run_event_state(struct run_event_state *state)
{ free(state); }
int run_event(struct run_event_state *state, const char *dump_dir_name, const char *event);
-char *list_possible_events(const char *pfx);
+char *list_possible_events(const char *dump_dir_name, const char *pfx);
#ifdef __cplusplus
}