diff options
author | Florian Festi <ffesti@redhat.com> | 2010-10-24 19:39:42 +0200 |
---|---|---|
committer | Florian Festi <ffesti@redhat.com> | 2010-11-03 10:03:14 +0100 |
commit | 7f949110693a44d798374ae6453a1120b3b66d2f (patch) | |
tree | ca5517161e0529249a5ef994ea6573eb71eb1186 /python/rpmmodule.c | |
parent | 2946c185fa03c4847b32d230b10b641b4baa7466 (diff) | |
download | librpm-tizen-7f949110693a44d798374ae6453a1120b3b66d2f.tar.gz librpm-tizen-7f949110693a44d798374ae6453a1120b3b66d2f.tar.bz2 librpm-tizen-7f949110693a44d798374ae6453a1120b3b66d2f.zip |
Rename rpmdbKeyIterator to rpmdbIndexIterator
Diffstat (limited to 'python/rpmmodule.c')
-rw-r--r-- | python/rpmmodule.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/rpmmodule.c b/python/rpmmodule.c index 8fc022b8e..0b69d4f1a 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -12,7 +12,7 @@ #include "rpmfi-py.h" #include "rpmkeyring-py.h" #include "rpmmi-py.h" -#include "rpmki-py.h" +#include "rpmii-py.h" #include "rpmps-py.h" #include "rpmmacro-py.h" #include "rpmtd-py.h" @@ -203,7 +203,7 @@ static int prepareInitModule(void) if (PyType_Ready(&rpmfi_Type) < 0) return 0; if (PyType_Ready(&rpmKeyring_Type) < 0) return 0; if (PyType_Ready(&rpmmi_Type) < 0) return 0; - if (PyType_Ready(&rpmki_Type) < 0) return 0; + if (PyType_Ready(&rpmii_Type) < 0) return 0; if (PyType_Ready(&rpmProblem_Type) < 0) return 0; if (PyType_Ready(&rpmPubkey_Type) < 0) return 0; #if 0 @@ -303,8 +303,8 @@ static int initModule(PyObject *m) Py_INCREF(&rpmmi_Type); PyModule_AddObject(m, "mi", (PyObject *) &rpmmi_Type); - Py_INCREF(&rpmki_Type); - PyModule_AddObject(m, "ki", (PyObject *) &rpmki_Type); + Py_INCREF(&rpmii_Type); + PyModule_AddObject(m, "ii", (PyObject *) &rpmii_Type); Py_INCREF(&rpmProblem_Type); PyModule_AddObject(m, "prob", (PyObject *) &rpmProblem_Type); |