summaryrefslogtreecommitdiffstats
path: root/source/sam/sam_ads.c
Commit message (Collapse)AuthorAgeFilesLines
* talloc_init_named -> talloc_init.Jeremy Allison2002-12-221-4/+4
| | | | Jeremy.
* use FILE_MACRO instead of __FILE__Herb Lewis2002-12-031-17/+17
| | | | use FUNCTION_MACRO instead of __FUNCTION_
* Sync with metze's CVS treeJelmer Vernooij2002-10-211-79/+253
|
* Updates for sam_ads by metze - add the start of domain policy searching, and aAndrew Bartlett2002-09-291-25/+150
| | | | | | small fix for the previous merge. Andrew Bartlett
* Back out one of the API changes, now I recall how it was meant to work.Andrew Bartlett2002-09-281-2/+1
| | | | | | | | | | | | (New accounts are created on thier internal talloc context, not a supplied one and not the one beloning to the SAM) Also actaully add the sam_skel to the tree. I need to work out with Jelmer an appropriate way to ensure we still have an example external build, and if this should move back out again. Andrew Bartlett
* Add the beginings of sam_ads to the tree.Andrew Bartlett2002-09-281-0/+1080
This module, primarilly the work of "Stefan (metze) Metzmacher" <metze@metzemix.de>, uses the Active Directory schema to store the user/group/other information. I've been testing it against a real AD server, and it is intended to work with OpenLDAP as well. I've moved a few functions around in our other libads code, which has made it easier to tap into that existing code. Also, I've made some changes to the SAM interface, I hope there are not too many objections... To ensure we don't get silly bugs in the skel module, it is now in the default compile. This way you should not forget to update it :-) Andrew Bartlett