diff options
author | Amitay Isaacs <amitay@gmail.com> | 2011-07-20 14:44:19 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-07-28 15:20:52 +1000 |
commit | b9e05879600c185dff640c78c240e3cd0ab27e43 (patch) | |
tree | 8b9fc042b6e5b4d7e2d5d7a3b0accf790dcd0788 /source4/auth | |
parent | ef5e9ec3e309d033ad3916ca95daa0f2a96d95b7 (diff) | |
download | samba-b9e05879600c185dff640c78c240e3cd0ab27e43.tar.gz samba-b9e05879600c185dff640c78c240e3cd0ab27e43.tar.bz2 samba-b9e05879600c185dff640c78c240e3cd0ab27e43.zip |
s4auth: Remove duplicate assignment of structure variable
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/pyauth.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source4/auth/pyauth.c b/source4/auth/pyauth.c index 6b3948970f..201a8304e4 100644 --- a/source4/auth/pyauth.c +++ b/source4/auth/pyauth.c @@ -301,7 +301,6 @@ static PyTypeObject PyAuthContext = { .tp_basicsize = sizeof(py_talloc_Object), .tp_flags = Py_TPFLAGS_DEFAULT, .tp_new = py_auth_context_new, - .tp_basicsize = sizeof(py_talloc_Object), }; static PyMethodDef py_auth_methods[] = { |