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

Null terminate keyword list.

parent 9b7ca633
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,9 @@ $ python setup.py help
libraries=["milter","smutil","resolv"]
* $Log$
* Revision 1.19 2009/05/28 18:36:42 customdesigned
* Support new callbacks, including negotiate
*
* Revision 1.18 2009/05/21 21:53:05 customdesigned
* First cut at support unknown, data, negotiate callbacks.
*
......@@ -907,7 +910,7 @@ Required before main() is called.";
static PyObject *
milter_register(PyObject *self, PyObject *args, PyObject *kwds) {
static char *kwlist[] = { "name","unknown","data","negotiate" };
static char *kwlist[] = { "name","unknown","data","negotiate", NULL };
static PyObject** const cbp[3] =
{ &unknown_callback, &data_callback, &negotiate_callback };
PyObject *cb[3] = { NULL, NULL, NULL };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment