Skip to content
Snippets Groups Projects
Commit 780ac63e authored by Stuart Gathman's avatar Stuart Gathman
Browse files

Oops! Missing options argument pointer for addrcpt.

parent b51c08ba
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,9 @@ def connectcallback(ctx,hostname,family,hostaddr):
def closecallback(ctx):
m = ctx.getpriv()
if not m: return CONTINUE
try:
rc = m.close()
finally:
m._setctx(None) # release milterContext
return rc
......
......@@ -35,6 +35,9 @@ $ python setup.py help
libraries=["milter","smutil","resolv"]
* $Log$
* Revision 1.16 2008/12/16 04:21:05 customdesigned
* Fedora release
*
* Revision 1.15 2008/12/13 20:29:56 customdesigned
* Split off milter applications.
*
......@@ -1097,7 +1100,7 @@ milter_addrcpt(PyObject *self, PyObject *args) {
PyThreadState *t;
int rc;
if (!PyArg_ParseTuple(args, "s|z:addrcpt", &rcpt)) return NULL;
if (!PyArg_ParseTuple(args, "s|z:addrcpt", &rcpt, &params)) return NULL;
ctx = _find_context(self);
if (ctx == NULL) return NULL;
t = PyEval_SaveThread();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment