summaryrefslogtreecommitdiffstats
path: root/src/Hooks
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2010-03-18 11:37:36 +0100
committerKarel Klic <kklic@redhat.com>2010-03-18 11:37:36 +0100
commitec0ffd2b421898b4165cb98ab92da50fc935107e (patch)
tree59294771c5253751843dee89d81df438ddb6475f /src/Hooks
parent7bc2585fe81ce94d05a3b7c8045c0177a6fc70cc (diff)
parentaf63575dae4d2705b13966b1583230567b46538c (diff)
downloadabrt-ec0ffd2b421898b4165cb98ab92da50fc935107e.tar.gz
abrt-ec0ffd2b421898b4165cb98ab92da50fc935107e.tar.xz
abrt-ec0ffd2b421898b4165cb98ab92da50fc935107e.zip
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/Hooks')
-rw-r--r--src/Hooks/dumpoops.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Hooks/dumpoops.cpp b/src/Hooks/dumpoops.cpp
index ae92619..99ecf00 100644
--- a/src/Hooks/dumpoops.cpp
+++ b/src/Hooks/dumpoops.cpp
@@ -75,7 +75,7 @@ int main(int argc, char **argv)
/* Load KerneloopsScanner plugin */
// const plugin_info_t *plugin_info;
CPlugin* (*plugin_newf)(void);
- int (*scan_syslog_file)(vector_string_t& oopsList, const char *filename);
+ int (*scan_syslog_file)(vector_string_t& oopsList, const char *filename, time_t *last_changed_p);
void (*save_oops_to_debug_dump)(const vector_string_t& oopsList);
void *handle;
@@ -96,7 +96,7 @@ int main(int argc, char **argv)
/* Use it: parse and dump the oops */
vector_string_t oopsList;
- int cnt = scan_syslog_file(oopsList, argv[0]);
+ int cnt = scan_syslog_file(oopsList, argv[0], NULL);
log("found oopses: %d", cnt);
if (cnt > 0) {