From 4bb2403223be8a3fa87074ea3b8c1afc40186bdd Mon Sep 17 00:00:00 2001 From: Stuart Gathman Date: Fri, 29 May 2009 19:49:40 +0000 Subject: [PATCH] Typo calling helo instead of negotiate. --- miltermodule.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/miltermodule.c b/miltermodule.c index 92e9f94..084c5f3 100644 --- a/miltermodule.c +++ b/miltermodule.c @@ -35,6 +35,9 @@ $ python setup.py help libraries=["milter","smutil","resolv"] * $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 * Support new callbacks, including negotiate * @@ -839,7 +842,7 @@ milter_wrap_negotiate(SMFICTX *ctx, arglist = Py_BuildValue("(OO)", c, optlist); PyThreadState *t = c->t; 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; if (rc == SMFIS_CONTINUE) { #if 0 // PyArgs_Parse deprecated and going away