search for: cap_free

Displaying 5 results from an estimated 5 matches for "cap_free".

Did you mean: map_free
2016 Mar 22
2
samba 4.4rcx WINS nsswitch module
...fd2e0 (libc.so.6:strchrnul) redirected to 0x4c30470 (strchrnul) --3135-- REDIR: 0x52f6a10 (libc.so.6:__GI_mempcpy) redirected to 0x4c30680 (__GI_mempcpy) --3135-- REDIR: 0x52fba50 (libc.so.6:__GI_memcpy) redirected to 0x4c2e750 (__GI_memcpy) ==3135== Invalid read of size 4 ==3135== at 0x4E36779: cap_free (in /usr/lib64/libcap.so.2.22) ==3135== by 0x10CE56: ??? (in /usr/local/bin/ping) ==3135== by 0x109E9D: ??? (in /usr/local/bin/ping) ==3135== by 0x528EB14: (below main) (in /usr/lib64/libc-2.17.so) ==3135== Address 0x58346e0 is 0 bytes inside a block of size 36 free'd ==3135== at 0...
2011 May 17
2
CentOS 5.6 X86_64 install problem
...ull down latest version of samba source code ran ./configure.developer (can post output from this long file if needed) Once that was done I ran the make command and got this at the end [3364/3441] Linking default/source3/smbd/smbd default/source3/libsamba3core.so: undefined reference to `cap_free' default/source3/libsamba3core.so: undefined reference to `cap_set_flag' default/source3/libsamba3core.so: undefined reference to `cap_get_proc' default/source3/libsamba3core.so: undefined reference to `cap_set_proc' collect2: ld returned 1 exit status Waf: Leaving directory `/...
2016 Mar 22
7
samba 4.4rcx WINS nsswitch module
WINS nsswitch module -------------------- The WINS nsswitch module has been rewritten to address memory issues and to simplify the code. The module now uses libwbclient to do WINS queries. This means that winbind needs to be running in order to resolve WINS names using the nss_wins module. This does not affect smbd. my problem: old versions >> ping google.com >> PING google.com
2007 Feb 23
0
Simple patch
...quot;); + caps = cap_init(); + cap_clear(caps); + cap_set_flag(caps, CAP_PERMITTED, sizeof(suidcaps)/sizeof(cap_value_t), suidcaps, CAP_SET); + cap_set_flag(caps, CAP_EFFECTIVE, sizeof(suidcaps)/sizeof(cap_value_t), suidcaps, CAP_SET); + cap_set_proc(caps); + cap_free(caps); +#endif + lib_signals_init(); lib_signals_set_handler(SIGINT, TRUE, sig_die, NULL); lib_signals_set_handler(SIGTERM, TRUE, sig_die, NULL);
2005 May 12
0
[PATCH] Trusted IRIX Support
...; + if(running_cap != NULL) { + if(cap_set_proc(running_cap) != 0) + fatal("Unable to set the process capability " + "set to %s!",cap_string); + cap_free(running_cap); + } + else + fatal("Unable to convert %s into a capability set!", + cap_string); + } + } + + #endif /* WITH_IRIX_CAP */ + + + #ifdef WITH_IRIX_MAC + void + irix_set_mac(const cha...