diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-03 15:53:23 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:47:28 +0100 |
commit | 7b38aa728eb722cd14fa0ad4e246df0d2e54faba (patch) | |
tree | 057656c6341bb59aa8760531703739201ebd1fbc /source4/lib/tdb/tdb.i | |
parent | ab69eb8d8901d23794c6a298718e67656ef4820e (diff) | |
download | samba-7b38aa728eb722cd14fa0ad4e246df0d2e54faba.tar.gz samba-7b38aa728eb722cd14fa0ad4e246df0d2e54faba.tar.bz2 samba-7b38aa728eb722cd14fa0ad4e246df0d2e54faba.zip |
r26251: Fix include of stdint in tdb swig wrapper.
(This used to be commit 904475624b4ed050bfb151053f6c74c0c88315f4)
Diffstat (limited to 'source4/lib/tdb/tdb.i')
-rw-r--r-- | source4/lib/tdb/tdb.i | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/tdb/tdb.i b/source4/lib/tdb/tdb.i index 474f3c3960..21fb9fc2b2 100644 --- a/source4/lib/tdb/tdb.i +++ b/source4/lib/tdb/tdb.i @@ -45,7 +45,8 @@ typedef TDB_CONTEXT tdb; /* The tdb functions will crash if a NULL tdb context is passed */ -%include exception.i +%import exception.i +%import stdint.i %typemap(check) TDB_CONTEXT* { if ($1 == NULL) |