summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-11-02 15:26:08 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-11-02 15:26:08 +0100
commit5ef2dce8e701fa0c0e9a95e873be3253664e1b33 (patch)
treed93bf4cd85ae5d2cbe57ab84264e074db0aaf14d /lib
parentb986562eeeabfde75175d3dd9f0b34fcb15ce69c (diff)
downloadabrt-5ef2dce8e701fa0c0e9a95e873be3253664e1b33.tar.gz
abrt-5ef2dce8e701fa0c0e9a95e873be3253664e1b33.tar.xz
abrt-5ef2dce8e701fa0c0e9a95e873be3253664e1b33.zip
rename abrt_action.conf -> abrt_event.conf
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/utils/run_event.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/utils/run_event.c b/lib/utils/run_event.c
index f8ad443e..4ad2e270 100644
--- a/lib/utils/run_event.c
+++ b/lib/utils/run_event.c
@@ -22,10 +22,10 @@ int run_event(struct run_event_state *state,
const char *dump_dir_name,
const char *event
) {
- FILE *conffile = fopen(CONF_DIR"/abrt_action.conf", "r");
+ FILE *conffile = fopen(CONF_DIR"/abrt_event.conf", "r");
if (!conffile)
{
- error_msg("Can't open '%s'", CONF_DIR"/abrt_action.conf");
+ error_msg("Can't open '%s'", CONF_DIR"/abrt_event.conf");
return 1;
}
close_on_exec_on(fileno(conffile));
@@ -40,7 +40,7 @@ int run_event(struct run_event_state *state,
free(full_name);
/*setenv("EVENT", event, 1); - is this useful for children to know? */
- /* Read, match, and execute lines from abrt_action.conf */
+ /* Read, match, and execute lines from abrt_event.conf */
int retval = 0;
struct dump_dir *dd = NULL;
char *line;
@@ -169,10 +169,10 @@ int run_event(struct run_event_state *state,
char *list_possible_events(const char *pfx)
{
- FILE *conffile = fopen(CONF_DIR"/abrt_action.conf", "r");
+ FILE *conffile = fopen(CONF_DIR"/abrt_event.conf", "r");
if (!conffile)
{
- error_msg("Can't open '%s'", CONF_DIR"/abrt_action.conf");
+ error_msg("Can't open '%s'", CONF_DIR"/abrt_event.conf");
return NULL;
}