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

Typo calling helo instead of negotiate.

parent d5854693
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,9 @@ $ python setup.py help ...@@ -35,6 +35,9 @@ $ python setup.py help
libraries=["milter","smutil","resolv"] libraries=["milter","smutil","resolv"]
* $Log$ * $Log$
* Revision 1.20 2009/05/29 18:25:59 customdesigned
* Null terminate keyword list.
*
* Revision 1.19 2009/05/28 18:36:42 customdesigned * Revision 1.19 2009/05/28 18:36:42 customdesigned
* Support new callbacks, including negotiate * Support new callbacks, including negotiate
* *
...@@ -839,7 +842,7 @@ milter_wrap_negotiate(SMFICTX *ctx, ...@@ -839,7 +842,7 @@ milter_wrap_negotiate(SMFICTX *ctx,
arglist = Py_BuildValue("(OO)", c, optlist); arglist = Py_BuildValue("(OO)", c, optlist);
PyThreadState *t = c->t; PyThreadState *t = c->t;
c->t = 0; // do not release thread in _generic_wrapper c->t = 0; // do not release thread in _generic_wrapper
rc = _generic_wrapper(c, helo_callback, arglist); rc = _generic_wrapper(c, negotiate_callback, arglist);
c->t = t; c->t = t;
if (rc == SMFIS_CONTINUE) { if (rc == SMFIS_CONTINUE) {
#if 0 // PyArgs_Parse deprecated and going away #if 0 // PyArgs_Parse deprecated and going away
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment