summaryrefslogtreecommitdiffstats
path: root/src/report-python/reportmodule.c
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-12-15 18:44:55 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-12-15 18:44:55 +0100
commit6a2b728d7525214402eff838bb37be175ddce6c3 (patch)
tree2a9608f3c9922531a04ced1bbafa6502b10ffe59 /src/report-python/reportmodule.c
parenta10b0fa6bba8218a82d634100947e084ca8d6a36 (diff)
downloadabrt-6a2b728d7525214402eff838bb37be175ddce6c3.tar.gz
abrt-6a2b728d7525214402eff838bb37be175ddce6c3.tar.xz
abrt-6a2b728d7525214402eff838bb37be175ddce6c3.zip
Rename foo_crash_dump_dir -> foo_dump_dir
To be exact, these three functions are renamed: load_crash_data_from_crash_dump_dir create_crash_dump_dir delete_crash_dump_dir Rationale: data structure is called "struct dump_dir", not "struct crash_dump_dir" Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/report-python/reportmodule.c')
-rw-r--r--src/report-python/reportmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/report-python/reportmodule.c b/src/report-python/reportmodule.c
index 5fa31ca2..4d38eeab 100644
--- a/src/report-python/reportmodule.c
+++ b/src/report-python/reportmodule.c
@@ -22,9 +22,9 @@
PyObject *ReportError;
static PyMethodDef module_methods[] = {
- { "dd_opendir" , p_dd_opendir, METH_VARARGS, NULL },
- { "dd_create" , p_dd_create, METH_VARARGS, NULL },
-// { "delete_crash_dump_dir", p_delete_crash_dump_dir, METH_VARARGS, NULL },
+ { "dd_opendir" , p_dd_opendir, METH_VARARGS, NULL },
+ { "dd_create" , p_dd_create, METH_VARARGS, NULL },
+// { "delete_dump_dir", p_delete_dump_dir, METH_VARARGS, NULL },
{ NULL }
};