search for: freeit

Displaying 4 results from an estimated 4 matches for "freeit".

Did you mean: free_it
2003 Jan 09
1
Re: samba (2.2.7a) + openldap (2.0.x)
...t;Rebind failed: %s\n", ldap_err2string( rc ) ) ); + } + return rc; +} +#else +static int auth_rebind_proc ( LDAP * ld, + char **whop, + char **credp, + int *methodp, + int freeit, + void *arg ) +{ + /** @TODO Use the samba utility functions here. */ + register char *to_clear = *credp; + if ( freeit ) { + free( *whop ); + *whop = NULL; + while ( *to_clear != '\0' ) *to_clear++ = '\0'; + free(...
2003 Mar 17
2
Samba 2.2.8 compile failure - Solaris 8, SunCC, LDAP
My apologies if this isn't the correct posting address -- I didn't see an obvious "report problems here" on the website. Some of the code modifications introduced between 2.2.7 and 2.2.8 don't appear to agree with Solaris, using Sun's CC, with the LDAP support code. Note that I'm linking against the Solaris-bundled LDAP package (SUNWlldap). |% env
2009 Aug 12
1
do_umount adjustment
Here's one final (I hope) question without a complete patch. Given that I already ensure that stubs.c invokes REQUIRE_ROOT_OR_RESOLVE_DEVICE just before calling do_umount, does this new version of do_umount look ok? /* Again, use the external /bin/umount program, so that /etc/mtab * is kept updated. */ int do_umount (const char *pathordevice) { int r; char *err; char *buf =
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change. I'll get back to that series shortly ;-) It turned into a factorization and constification exercise during which I got a taste of ocaml. Thanks to Rich Jones for help with a few snippets in generator.ml. The overall result is that many previously-manually-maintained bits from daemon/*.c functions are now hoisted into the automatically-