diff options
Diffstat (limited to 'rpmmodule/rpmmodule.c')
-rw-r--r-- | rpmmodule/rpmmodule.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rpmmodule/rpmmodule.c b/rpmmodule/rpmmodule.c index 1d79f219f..3e943d768 100644 --- a/rpmmodule/rpmmodule.c +++ b/rpmmodule/rpmmodule.c @@ -927,8 +927,11 @@ static PyObject * hdrSubscript(hdrObject * s, PyObject * item) { tag = PyInt_AsLong(item); } else if (PyString_Check(item)) { str = PyString_AsString(item); - for (i = 0; i < rpmTagTableSize; i++) + printf ("CHECK %d\n", strcasecmp("VERSION", "version")); + for (i = 0; i < rpmTagTableSize; i++) { + printf ("get header %s <-> %s\n", rpmTagTable[i].name + 7, str); if (!strcasecmp(rpmTagTable[i].name + 7, str)) break; + } if (i < rpmTagTableSize) tag = rpmTagTable[i].val; if (tag == -1) { /* if we still don't have the tag, go looking for the header |