summaryrefslogtreecommitdiffstats
path: root/src/daemon/Daemon.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-11-26 17:51:54 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-11-26 17:51:54 +0100
commita22c570ddba7a71f717eb2209674f4301f5ba8d7 (patch)
tree9febb0bfac7c37dac060d1aec95476db2da5b568 /src/daemon/Daemon.cpp
parentf43845314b189eb1810ee98b3c3be2dca3bfecd1 (diff)
downloadabrt-a22c570ddba7a71f717eb2209674f4301f5ba8d7.tar.gz
abrt-a22c570ddba7a71f717eb2209674f4301f5ba8d7.tar.xz
abrt-a22c570ddba7a71f717eb2209674f4301f5ba8d7.zip
preparatory patch for future factoring out of headers for reportlib
Some files and functions are renamed, no logic changes. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/daemon/Daemon.cpp')
-rw-r--r--src/daemon/Daemon.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/Daemon.cpp b/src/daemon/Daemon.cpp
index f0f9dee8..609b0b26 100644
--- a/src/daemon/Daemon.cpp
+++ b/src/daemon/Daemon.cpp
@@ -536,7 +536,7 @@ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpoin
char *d = concat_path_file(DEBUG_DUMPS_DIR, worst_dir);
free(worst_dir);
worst_dir = NULL;
- delete_debug_dump_dir(d);
+ delete_crash_dump_dir(d);
free(d);
}
}
@@ -561,7 +561,7 @@ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpoin
log("Deleting crash %s (dup of %s), sending dbus signal",
strrchr(fullname, '/') + 1,
strrchr(first, '/') + 1);
- delete_debug_dump_dir(fullname);
+ delete_crash_dump_dir(fullname);
}
const char *uid_str = get_crash_data_item_content_or_NULL(crashinfo, FILENAME_UID);
@@ -586,7 +586,7 @@ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpoin
case MW_GPG_ERROR:
default:
log("Corrupted or bad crash %s (res:%d), deleting", fullname, (int)res);
- delete_debug_dump_dir(fullname);
+ delete_crash_dump_dir(fullname);
break;
}
}