From de737187c931368950a4e0818c297a941e8d3781 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 12 May 2005 01:44:09 +0000 Subject: r6739: Fix for segfault in samba.winbind.auth_crap module found by Ed Plese. Closes bugzilla 2699. (This used to be commit 16ddf2812266c314950f464a6f4d75d55de0f9d6) --- source3/python/py_winbind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/python/py_winbind.c b/source3/python/py_winbind.c index 7256f77002..6482a5b9e3 100644 --- a/source3/python/py_winbind.c +++ b/source3/python/py_winbind.c @@ -706,7 +706,7 @@ static PyMethodDef winbind_methods[] = { "Authenticate a username and password using plaintext authentication.\n" "The NT status code is returned with zero indicating success." }, - { "auth_crap", (PyCFunction)py_auth_crap, METH_VARARGS, + { "auth_crap", (PyCFunction)py_auth_crap, METH_VARARGS | METH_KEYWORDS, "auth_crap(s, s) -> int\n" "\n" "Authenticate a username and password using the challenge/response\n" -- cgit