summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Currently we don't SPNEGO negotiate back to NTLMSSP. Note this.Jeremy Allison2008-02-141-4/+16
| | | | | | | | Jeremy.
| * Ensure invalidate_vuid() deletes any ntlmssp state.Jeremy Allison2008-02-141-0/+4
| | | | | | | | Jeremy.
| * Allow auth_ntlmssp_end() to ignore null pointers passed in.Jeremy Allison2008-02-141-1/+6
| | | | | | | | Jeremy.
| * Allow the mechOID to be written separately.Jeremy Allison2008-02-141-2/+4
| | | | | | | | Jeremy.
| * Revert "Merge in J.Layton patch and resolve conflict."Simo Sorce2008-02-141-64/+26
| | | | | | | | | | | | | | | | | | This reverts commit 6b1a118eaaab405eeef0cf3c0488a2747af562ba. We found that this patch does not play well with currently released cifs.ko code, so after discussions with Jeff Layton and Steve french we decided it is best to back it off and re-think a better approach. Jeff will send new patches later, but for now it is better to just revert to the previous code
| * Remove the regfio objects from the ldb commandlin tools object list - unused.Michael Adam2008-02-141-1/+1
| | | | | | | | Michael
| * Use the proper boolean constants.Michael Adam2008-02-141-3/+3
| | | | | | | | Michael
| * Clean up LIBTDB-related Makefile variables a bitMichael Adam2008-02-141-9/+1
| | | | | | | | | | | | (removing commented out stuff). Michael
| * Remove unused marshalling for LSA_REMOVE_ACCT_RIGHTS.Günther Deschner2008-02-143-120/+0
| | | | | | | | Guenther
| * Use rpccli_lsa_RemoveAccountRights() in net and rpcclient.Günther Deschner2008-02-142-6/+36
| | | | | | | | Guenther
| * Use pidl for _lsa_RemoveAccountRights.Günther Deschner2008-02-142-48/+13
| | | | | | | | Guenther
| * Re-run make idl.Günther Deschner2008-02-144-8/+8
| | | | | | | | Guenther
| * Fix IDL for lsa_RemoveAccountRights.Günther Deschner2008-02-141-3/+3
| | | | | | | | Guenther
| * Remove unused marshalling for LSA_ENUM_ACCT_RIGHTS.Günther Deschner2008-02-143-178/+0
| | | | | | | | Guenther
| * Use rpccli_lsa_EnumAccountRights in net and rpcclient.Günther Deschner2008-02-142-21/+27
| | | | | | | | Guenther
| * Fix IDL for lsa_EnumAccountRights.Günther Deschner2008-02-141-2/+2
| | | | | | | | Guenther
| * Use pidl for _lsa_EnumAccountRights().Günther Deschner2008-02-142-39/+52
| | | | | | | | Guenther
| * Remove unused marshalling for LSA_ADD_ACCT_RIGHTS.Günther Deschner2008-02-143-111/+0
| | | | | | | | Guenther
| * Use rpccli_lsa_AddAccountRights in net and rpcclient.Günther Deschner2008-02-142-5/+34
| | | | | | | | Guenther
| * Use pidl for _lsa_AddAccountRights().Günther Deschner2008-02-142-47/+11
| | | | | | | | Guenther
| * Re-run make idl.Günther Deschner2008-02-141-0/+3
| | | | | | | | Guenther
| * Fix IDL for lsa_AddAccountRights.Günther Deschner2008-02-141-3/+3
| | | | | | | | Guenther
| * Create symbols to export in libtdb dynamically from tdb.h.Michael Adam2008-02-144-7/+132
| | | | | | | | | | | | | | | | This adds a general mechanism to create version-scripts for linking shared libraries from one or several header files, similar to mkproto.sh/awk. Michael
| * Add support for building and using shared and static libtdb library.Michael Adam2008-02-144-103/+207
| | | | | | | | | | | | | | | | This should work with m4_include(lib/tdb/libtdb.m4) like already done with talloc, but currently this does not work (yet) - tdb code has to be merged from s4 before that. Michael
| * Fix a typo.Michael Adam2008-02-141-1/+1
| | | | | | | | | | | | | | This had no negative side effect since currently TALLOC_OBJ only consists of one object. Michael
| * Remove unused marshalling for LSA_ADDPRIVS and LSA_REMOVEPRIVS.Günther Deschner2008-02-142-211/+0
| | | | | | | | Guenther
| * Use pidl for _lsa_AddPrivilegesToAccount and _lsa_RemovePrivilegesFromAccount.Günther Deschner2008-02-143-71/+18
| | | | | | | | Guenther
| * Add lsaaddpriv and lsadelpriv commands to rpcclient.Günther Deschner2008-02-141-4/+172
| | | | | | | | Guenther
| * Fix IDL for lsa_AddPrivilegesToAccount.Günther Deschner2008-02-141-1/+1
| | | | | | | | Guenther
| * Remove unused marshalling for LSA_LOOKUP_PRIV_VALUE.Günther Deschner2008-02-143-117/+0
| | | | | | | | Guenther
| * Use rpccli_lsa_LookupPrivValue() in rpcclient.Günther Deschner2008-02-141-2/+8
| | | | | | | | Guenther
| * Use pidl for _lsa_LookupPrivValue().Günther Deschner2008-02-142-37/+9
| | | | | | | | Guenther
| * Fix IDL for lsa_LookupPrivValue.Günther Deschner2008-02-141-2/+2
| | | | | | | | Guenther
| * Remove unused marshalling for LSA_ENUMPRIVSACCOUNT.Günther Deschner2008-02-143-153/+0
| | | | | | | | Guenther
| * Use rpccli_lsa_EnumPrivsAccount() in rpcclient.Günther Deschner2008-02-141-7/+10
| | | | | | | | Guenther
| * Remove white space.Günther Deschner2008-02-141-60/+60
| | | | | | | | Guenther
| * Use pidl for _lsa_EnumPrivsAccount().Günther Deschner2008-02-142-37/+40
| | | | | | | | Guenther
| * Re-run make idl.Günther Deschner2008-02-145-19/+32
| | | | | | | | Guenther
| * Fix IDL for lsa_EnumPrivsAccount.Günther Deschner2008-02-141-1/+1
| | | | | | | | Guenther
| * Fix typo.Günther Deschner2008-02-141-3/+3
| | | | | | | | Guenther
| * Remove accidential commit.Günther Deschner2008-02-141-1/+1
| | | | | | | | Guenther
| * Remove unused marshalling for LSA_ENUM_ACCOUNTS.Günther Deschner2008-02-143-156/+0
| | | | | | | | Guenther
| * Use rpccli_lsa_EnumAccounts() in net and rpcclient.Günther Deschner2008-02-142-32/+39
| | | | | | | | Guenther
| * Use pidl for _lsa_EnumAccounts.Günther Deschner2008-02-142-48/+25
| | | | | | | | Guenther
| * Re-run make idl.Günther Deschner2008-02-142-4/+4
| | | | | | | | Guenther
| * Fix IDL for lsa_EnumAccounts.Günther Deschner2008-02-141-3/+3
| | | | | | | | Guenther
| * Try and fix the Darwin build with dynamic libs.Michael Adam2008-02-141-1/+3
| | | | | | | | | | | | | | Golly gosh, this one took me quite some time to figure out! Hopefully, I did not introduce any typos copying... Michael
| * Remove unused marshalling for NET_LOGON_CTRL and NET_LOGON_CTRL2.Günther Deschner2008-02-133-545/+0
| | | | | | | | Guenther
| * Use pidl for _netr_LogonControl2.Günther Deschner2008-02-132-50/+51
| | | | | | | | Guenther
| * Add some netr_NETLOGON_INFO init functions.Günther Deschner2008-02-131-3/+43
| | | | | | | | Guenther