summaryrefslogtreecommitdiffstats
path: root/src/daemon
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-12-22 13:57:14 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-12-22 13:57:14 +0100
commitdf1b1d501106687fcf0039dc9771c4455c346df5 (patch)
tree7e2f483a538e23a1c679475abe733ae5977edfdf /src/daemon
parentc96bab437f21aea116bfe5608bb43c9cd26fb904 (diff)
downloadabrt-df1b1d501106687fcf0039dc9771c4455c346df5.tar.gz
abrt-df1b1d501106687fcf0039dc9771c4455c346df5.tar.xz
abrt-df1b1d501106687fcf0039dc9771c4455c346df5.zip
*: rename *crash_dump.* -> *crash_data.*
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/CommLayerServer.h2
-rw-r--r--src/daemon/Daemon.h2
-rw-r--r--src/daemon/MiddleWare.cpp6
-rw-r--r--src/daemon/abrt-server.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/daemon/CommLayerServer.h b/src/daemon/CommLayerServer.h
index 5b7ecf57..997f6c41 100644
--- a/src/daemon/CommLayerServer.h
+++ b/src/daemon/CommLayerServer.h
@@ -20,7 +20,7 @@
#define COMMLAYERSERVER_H_
#include "abrtlib.h"
-#include "abrt_crash_dump.h"
+#include "abrt_crash_data.h"
class CCommLayerServer {
public:
diff --git a/src/daemon/Daemon.h b/src/daemon/Daemon.h
index 158b48fb..0c3db566 100644
--- a/src/daemon/Daemon.h
+++ b/src/daemon/Daemon.h
@@ -21,7 +21,7 @@
#include <pthread.h>
#include "abrt_types.h"
-#include "abrt_crash_dump.h"
+#include "abrt_crash_data.h"
class CCrashWatcher;
class CCommLayerServer;
diff --git a/src/daemon/MiddleWare.cpp b/src/daemon/MiddleWare.cpp
index 724b092a..655bda3a 100644
--- a/src/daemon/MiddleWare.cpp
+++ b/src/daemon/MiddleWare.cpp
@@ -300,8 +300,8 @@ report_status_t Report(crash_data_t *client_report,
}
VERB3 {
- log_map_crash_data(client_report, " client_report");
- log_map_crash_data(stored_report, " stored_report");
+ log_crash_data(client_report, " client_report");
+ log_crash_data(stored_report, " stored_report");
}
free_crash_data(stored_report);
#define stored_report stored_report_must_not_be_used_below
@@ -687,7 +687,7 @@ void CreateReport(const char* crash_id, long caller_uid, int force, crash_data_t
switch (res)
{
case MW_OK:
- VERB2 log_map_crash_data(*crash_data, "crashReport");
+ VERB2 log_crash_data(*crash_data, "crashReport");
break;
case MW_NOENT_ERROR:
error_msg("Can't find crash with id '%s'", crash_id);
diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c
index fdf66e59..47457aaf 100644
--- a/src/daemon/abrt-server.c
+++ b/src/daemon/abrt-server.c
@@ -17,7 +17,7 @@
*/
#include "abrtlib.h"
#include "dump_dir.h"
-#include "abrt_crash_dump.h" /* FILENAME_foo */
+#include "abrt_crash_data.h" /* FILENAME_foo */
#include "hooklib.h"
#include "parse_options.h"