summaryrefslogtreecommitdiffstats
path: root/nsswitch
Commit message (Collapse)AuthorAgeFilesLines
...
* libwbclient: Make wbcGetSidAliases not use tallocVolker Lendecke2010-04-191-8/+7
|
* libwbclient: Test wbcGetSidAliasesVolker Lendecke2010-04-191-0/+37
|
* libwbclient: Simplify test_wbc_domain_info a bitVolker Lendecke2010-04-191-5/+3
|
* libwbclient: Fix some pointless macro callsVolker Lendecke2010-04-191-3/+3
|
* libwbclient: Take -21 into account in length guessingVolker Lendecke2010-04-191-4/+4
|
* libwbclient: Fix some pointless macro callsVolker Lendecke2010-04-191-4/+4
|
* libwbclient: Make wbcLookupRids not use tallocVolker Lendecke2010-04-191-21/+16
|
* libwbclient: Add wbcAllocateStringArrayVolker Lendecke2010-04-192-0/+17
|
* libwbclient: Test wbcLookupRidsVolker Lendecke2010-04-191-0/+29
|
* libwbclient: Make wbcLookupSid not use tallocVolker Lendecke2010-04-191-51/+35
|
* libwbclient: Add wbcStrDupVolker Lendecke2010-04-192-0/+16
|
* libwbclient: Convert wbcSidToString to not use tallocVolker Lendecke2010-04-191-22/+22
|
* libwbclient: Make copy_group_entry not use tallocVolker Lendecke2010-04-191-24/+44
|
* libwbclient: Make copy_passwd_entry not use tallocVolker Lendecke2010-04-191-28/+41
|
* libwbclient: Make wbcGuidToString not use tallocVolker Lendecke2010-04-191-20/+16
|
* libwbclient: Make wbcLibraryDetails not use tallocVolker Lendecke2010-04-191-1/+3
|
* libwbclient: Add wbcAllocateMemory()Volker Lendecke2010-04-192-2/+54
| | | | | | | | This prepares for removing libwbclient's talloc dependency. It is a non-hierarchical "talloc-lite" that has destructors. It is necessary because we have the catch-call wbcFreeMemory call. Individual wbcFreeXXX calls for the different structures wbclient returns would have made this easier, but wbcFreeMemory is the API we have to live with.
* s4-waf: fixed WINBINDD_SOCKET_DIR for wb_common in s4Andrew Tridgell2010-04-191-1/+1
| | | | s4 uses a different path for the socket
* nsswitch: Fix a memleak in wbinfoVolker Lendecke2010-04-181-0/+2
|
* s4-waf: removed the unused installdir= option to SAMBA_BINARY()Andrew Tridgell2010-04-181-2/+0
| | | | | This was left over from the automatic conversion of the config.mk files
* libwbclient: Re-Fix a bug that was fixed with e5741e27c4cVolker Lendecke2010-04-134-29/+56
| | | | | | | | | | | | | | | | | > r21878: Fix a bug with smbd serving a windows terminal server: If winbind > decides smbd to be idle it might happen that smbd needs to do a winbind > operation (for example sid2name) as non-root. This then fails to get the > privileged pipe. When later on on the same connection another authentication > request comes in, we try to do the CRAP auth via the non-privileged pipe. > > This adds a winbindd_priv_request_response() request that kills the existing > winbind pipe connection if it's not privileged. The fix for this was lost during the conversion to libwbclient. Thanks to Ira Cooper <samba@ira.wakeful.net> for pointing this out! Volker
* libwbclient: Remove a pointless variableVolker Lendecke2010-04-131-3/+1
|
* lib/replace/wscript: inline LIBREPLACE_EXT into 'replace' as the autoconf ↵Stefan Metzmacher2010-04-121-2/+2
| | | | | | system does metze
* nsswitch/wbinfo: Fix the S4 header checkKai Blin2010-04-111-1/+1
|
* libwbclient: Fix a memleak in wbcGetDisplayNameVolker Lendecke2010-04-101-0/+1
|
* libwbclient: Ensure correct 0-termination in wbcGetSidAliasesVolker Lendecke2010-04-101-0/+1
|
* libwbclient: Fix some memleaks in the testsVolker Lendecke2010-04-091-0/+7
|
* s4-waf: removed the AUTOGENERATED markersAndrew Tridgell2010-04-061-4/+0
| | | | we won't be using the mk -> wscript generator again
* s4-waf: more places missing libreplaceAndrew Tridgell2010-04-061-4/+1
|
* s4-waf: cleanup use of LIBPOPT vs popt dependencyAndrew Tridgell2010-04-061-1/+1
|
* s4-waf: mark the wscript files as python so vim/emacs knows how to highlight ↵Andrew Tridgell2010-04-063-0/+6
| | | | them
* build: configure fixes for opensolarisAndrew Tridgell2010-04-061-3/+2
|
* build: check libc first for several librariesAndrew Tridgell2010-04-061-1/+1
|
* build: check for pam headersAndrew Tridgell2010-04-061-0/+5
|
* build: waf quicktest nearly worksAndrew Tridgell2010-04-061-2/+3
| | | | | Rewrote wafsamba using a new dependency handling system, and started adding the waf test code
* build: commit all the waf build files in the treeAndrew Tridgell2010-04-062-0/+37
|
* libwbclient: Fix a memleak in wbcListTrustsVolker Lendecke2010-04-041-8/+3
|
* libwbclient: Fix memleaks in testsVolker Lendecke2010-04-041-0/+10
|
* libwbclient: Fix a memleak in wbcListTrustsVolker Lendecke2010-04-041-0/+3
|
* libwbclient: Streamline result processing of wbcCredentialCache()Volker Lendecke2010-04-041-4/+2
|
* libwbclient: Fix a memleak in wbcCredentialCacheVolker Lendecke2010-04-041-0/+1
|
* libwbclient: Both talloc_free and wbcFreeMemory deal with NULLVolker Lendecke2010-04-032-18/+6
| | | | This is in line with the ANSI C standard definition of free(NULL)
* s3: Add wbinfo --logoffVolker Lendecke2010-04-021-0/+23
|
* s3: Remove some pointless break statementsVolker Lendecke2010-04-021-3/+0
|
* libutil: moved the networking defines to util_net.hAndrew Tridgell2010-03-261-0/+1
| | | | These were causing thousands of warnings on solaris8
* s3: Fix bug 7202Volker Lendecke2010-03-201-0/+5
| | | | | | | | Make sure _nss_wins_gethostbyname_r has a talloc stackframe available Thanks to Sergey Tereschenko <serg.partizan@gmail.com> for reporting the bug! Volker
* NSS:winbind_struct_protocol.h - fix typoMatthias Dieter Wallnöfer2010-03-131-1/+1
|
* s4: allow pam_winbind.so to be build on samba4Matthieu Patou2010-03-111-0/+7
| | | | | | | | | | * Modify the nsswitch/config.m4 to add tests and build that will be put in configure by the autoconf/autoheader We test if there is pam headers and pam library to be able to build the pam module We add s4 build directive (that are normaly in standalone config.mk) this is due to the fact that we need to rely on path that are guessed during configure. Add tests not to build pam_winbind if pam dev files is not present Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s4: Modify auth/config.m4 to move pam tests to nsswitch.m4 so that we tests ↵Matthieu Patou2010-03-111-0/+24
| | | | | | things in one place Signed-off-by: Stefan Metzmacher <metze@samba.org>
* nsswitch: build libnss_winbind.so with SOVERSION = 2Stefan Metzmacher2010-03-101-0/+2
| | | | metze