diff options
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); } |