From 16ddf2812266c314950f464a6f4d75d55de0f9d6 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. --- source/python/py_winbind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/python') diff --git a/source/python/py_winbind.c b/source/python/py_winbind.c index 7256f77002b..6482a5b9e33 100644 --- a/source/python/py_winbind.c +++ b/source/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