diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-10-26 10:21:12 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-10-26 10:21:12 +0300 |
commit | eabf92f842039af35d1da0e0271e84483959a7e8 (patch) | |
tree | 3f4620d8595840588c9d363bd971e5d869a542c2 /python | |
parent | 4b185fc48d9e1206624002618ff661bc1770356c (diff) | |
download | rpm-eabf92f842039af35d1da0e0271e84483959a7e8.tar.gz rpm-eabf92f842039af35d1da0e0271e84483959a7e8.tar.bz2 rpm-eabf92f842039af35d1da0e0271e84483959a7e8.zip |
Rename rpmcliImportPubkey() -> rpmtsImportPubkey()
- it's not a cli function in any way
- move to rpmts group
Diffstat (limited to 'python')
-rw-r--r-- | python/rpmts-py.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmts-py.c b/python/rpmts-py.c index 5fbd45373..7822ed5ca 100644 --- a/python/rpmts-py.c +++ b/python/rpmts-py.c @@ -892,7 +892,7 @@ fprintf(stderr, "*** rpmts_PgpImportPubkey(%p) ts %p\n", s, s->ts); pkt = (unsigned char *)PyString_AsString(blob); pktlen = PyString_Size(blob); - rc = rpmcliImportPubkey(s->ts, pkt, pktlen); + rc = rpmtsImportPubkey(s->ts, pkt, pktlen); return Py_BuildValue("i", rc); } |