X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/blobdiff_plain/0a6d581785a98cb205838c7b130700c571ea99a7..37f827cf8490f291b3da732e1a213fca1daa78a1:/key.c diff --git a/key.c b/key.c index 9a7de0c..7deb382 100644 --- a/key.c +++ b/key.c @@ -1,7 +1,5 @@ /* -*-c-*- * - * $Id$ - * * Key files and data * * (c) 2005 Straylight/Edgeware @@ -353,12 +351,11 @@ static PyObject *kdmeth_split(PyObject *me, PyObject *arg) static PyObject *kdmeth_copy(PyObject *me, PyObject *arg, PyObject *kw) { key_filter f = { 0, 0 }; - PyObject *rc = 0; static char *kwlist[] = { "filter", 0 }; key_data *kd; if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:copy", kwlist, - conffilter, &f)) + convfilter, &f)) return (0); if ((kd = key_copydata(KEYDATA_KD(me), &f)) == 0) RETURN_NONE;