diff options
author | Pierre Lejeune <superheron@gmail.com> | 2012-09-25 20:56:37 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-09-25 22:40:39 +0200 |
commit | 809004689a5ec60066d1ae26e9599ec09895c46c (patch) | |
tree | dd384b7e02ec1cce104a81162f34256572151d66 /lib/ntdb | |
parent | fa332b71dc71d23f1475ed6c25a6376934ab652a (diff) | |
download | samba-809004689a5ec60066d1ae26e9599ec09895c46c.tar.gz samba-809004689a5ec60066d1ae26e9599ec09895c46c.tar.bz2 samba-809004689a5ec60066d1ae26e9599ec09895c46c.zip |
pyntdb: Fix init function for ntdb python module.
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org>
Autobuild-User(master): Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date(master): Tue Sep 25 22:40:39 CEST 2012 on sn-devel-104
Diffstat (limited to 'lib/ntdb')
-rw-r--r-- | lib/ntdb/pyntdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ntdb/pyntdb.c b/lib/ntdb/pyntdb.c index 1037f3c004..e4965fbae1 100644 --- a/lib/ntdb/pyntdb.c +++ b/lib/ntdb/pyntdb.c @@ -550,8 +550,8 @@ static PyMethodDef ntdb_methods[] = { { NULL } }; -void inittdb(void); -void inittdb(void) +void initntdb(void); +void initntdb(void) { PyObject *m; |