diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-08-29 19:14:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:38:59 -0500 |
commit | 3bc4fd1bb9bfbd0e0efd89d47c50bf798e5a1481 (patch) | |
tree | 429afd025bad12ab90486ba4404fc9293f8bdf45 /source3/utils | |
parent | 164a7600512d85bb9871f71131927802bbbd879d (diff) | |
download | samba-3bc4fd1bb9bfbd0e0efd89d47c50bf798e5a1481.tar.gz samba-3bc4fd1bb9bfbd0e0efd89d47c50bf798e5a1481.tar.bz2 samba-3bc4fd1bb9bfbd0e0efd89d47c50bf798e5a1481.zip |
r17924: Get rid of warnings now that talloc is merged.
Destructors now take a pointer to the "real" destroyed object as an argument.
Volker
(This used to be commit 70edd716ef0ccb218fe18d1233bd30abe46b62bf)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/netlookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/netlookup.c b/source3/utils/netlookup.c index b9948485b9..d82630e5c8 100644 --- a/source3/utils/netlookup.c +++ b/source3/utils/netlookup.c @@ -41,7 +41,7 @@ static struct con_struct *cs; Close connection on context destruction. ********************************************************/ -static int cs_destructor(void *p) +static int cs_destructor(struct con_struct *p) { if (cs->cli) { cli_shutdown(cs->cli); |