summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
* r22533: Use lib functions where we have themVolker Lendecke2007-10-101-2/+3
|
* r22529: Add implementation of HP-UX ACLs in the new vfs-module framework.Michael Adam2007-10-101-56/+1137
|
* r22526: Support deep tree mounts after share (instead of having to specifySteve French2007-10-101-0/+10
| | | | prepath)
* r22524: Fix memleak.Günther Deschner2007-10-101-0/+2
| | | | Guenther
* r22511: Remove unused LDAPMessage.Günther Deschner2007-10-101-3/+0
| | | | Guenther
* r22509: Fix some memory corruption caused by calling free()Gerald Carter2007-10-101-6/+6
| | | | | on talloc()'d memory when adding/removing members from Local Groups.
* r22507: Wrap the method of obtaining sockets to listen on.James Peach2007-10-104-103/+129
|
* r22505: Fix buildAlexander Bokovoy2007-10-101-1/+1
|
* r22504: Fix bug Jerry found during his tutorial. Sorry :-(Jim McDonough2007-10-101-1/+6
| | | | | | | | | Allows authorized users (e.g. BUILTIN\Administrators members) to set attributes on an account, particularly "user cannot change password". add become_root() around updating attributes, after checking that access has been granted.
* r22502: Fix bug #4536 - delete symlinks to a directory correctly.Jeremy Allison2007-10-101-1/+17
| | | | Jeremy.
* r22496: reg_enumvalue should return WERR_NO_MORE_ITEMS instead ofMichael Adam2007-10-101-1/+1
| | | | | | WERR_BAD_FILE when all items have been successfully enumerated. Besides seeming the reasonable code to return, this is what I have seen from w2k3, w2k, wxp.
* r22495: Create wrapper to hide the details of obtaining a set of socketsJames Peach2007-10-103-168/+205
| | | | to listen on.
* r22493: Fix horrible memory corruption bug with CIFS POSIX open/mkidr.Jeremy Allison2007-10-101-0/+2
| | | | | Found by SteveF + valgrind :-). Jerry - essential for rc3. Jeremy.
* r22492: Add objectid code.Jeremy Allison2007-10-102-11/+24
| | | | Jeremy.
* r22491: Fix the build (3.0.25 and 3.0 are different here).Jeremy Allison2007-10-101-1/+1
| | | | Jeremy.
* r22490: Fix a couple of bugs found whist investigating CSC Vista issues.Jeremy Allison2007-10-101-4/+92
| | | | | | | Ensure we correctly NULL out allocation size fields. Allow QFILEINFO on pipes (Vista bug ?). Jerry - don't automatically merge for 3.0.25. Jeremy.
* r22489: Add a deletedomgroup command to rpcclient (samr).Michael Adam2007-10-101-0/+73
| | | | | | Corresponding to deletedomuser. Michael
* r22484: Check for the talloc_strdup to succeed.Günther Deschner2007-10-101-0/+1
| | | | Guenther
* r22483: Attempt to fix the build.Günther Deschner2007-10-101-6/+8
| | | | Guenther
* r22481: Move check for non-mappable SIDs to after sid_to_uid,Jeremy Allison2007-10-102-11/+13
| | | | | | sid_to_gid mapping, add LocalSystem to non-mappable list. Jeremy.
* r22480: Remove accidentially comitted getpeereid hunks again.Günther Deschner2007-10-101-9/+0
| | | | Guenther
* r22479: Add "net ads keytab list".Günther Deschner2007-10-105-7/+212
| | | | Guenther
* r22473: Correct fix for setting a default compat tdb idmap backend.Gerald Carter2007-10-101-29/+30
| | | | | | Previous code would always fill in "idmap backend = tdb" even if you defined idmap domains. My fault. I should have tested the original patch more before committing.
* r22468: Fixing implicit declaration of krb5_set_default_tgs_ktypes (which is ↵Günther Deschner2007-10-101-2/+0
| | | | | | | | hidden by KRB5_PRIVATE in MIT and doesn't exist on Heimdal). Guenther
* r22467: Adding configure check for -Werror-implicit-function-declaration and ↵Günther Deschner2007-10-101-2/+24
| | | | | | | | use it in -enable-developer. Guenther
* r22466: Fix build warning.Günther Deschner2007-10-101-1/+1
| | | | Guenther
* r22465: Last attempt to fix the build before dinner.Günther Deschner2007-10-101-0/+3
| | | | Guenther
* r22464: remove double code and use a functionStefan Metzmacher2007-10-101-34/+5
| | | | metze
* r22463: Add prototype.Günther Deschner2007-10-101-0/+6
| | | | Guenther
* r22461: Use ranged LDAP queries in lookup_usergroups_member() and start to ↵Günther Deschner2007-10-101-99/+75
| | | | | | | | | optinmize lookup_groupmem(). In the later, at least try to avoid those massive LDAP dn_lookups by looking in the cache before. Guenther
* r22460: Adding a generic ads_ranged_search() function.Günther Deschner2007-10-101-1/+173
| | | | Guenther
* r22459: Adding ads_get_dn_from_extended_dn(), in preparation of making ↵Günther Deschner2007-10-101-3/+37
| | | | | | | | ranged LDAP queries more generic. Michael, feel free to overwrite these and the following. Guenther
* r22458: Fix a commentVolker Lendecke2007-10-101-1/+1
|
* r22447: Patch from Ying Li <ying.li2@hp.com> to default tdb idmapGerald Carter2007-10-101-0/+8
| | | | | plugin when neither idmap domains nor idmap backend have been defined.
* r22444: * Validate a SID before trying to convert it to a uid/gid via the publicGerald Carter2007-10-101-3/+3
| | | | | | winbindd interface * Add nss_info/*so files to the RHEL/Fedora packaging
* r22441: Add automatic dependency tracking. The dependency generation isJames Peach2007-10-1012-8/+1065
| | | | | | | | | | | toolchain independent, but since there's no portable method for doing makefile includes, we can actually use the dependencies with GNU make. It's easy to add this for other makes, but I don't have any to test. This also moves as much m4 as possible into the m4 directory where no-one has to look at it. AFAICT, there's no way to hide depcomp in there too, which is unfortunate.
* r22430: Add SID validate to sid2uid() and sid2gid() public entry points in ↵Gerald Carter2007-10-101-4/+81
| | | | winbindd
* r22425: Avoid to segfault if we only have the realm.Simo Sorce2007-10-101-0/+5
|
* r22419: Update configure so that we only need one copy of os2_delete.cJames Peach2007-10-102-109/+10
|
* r22418: Support running under launchd. We abstract the method of obtainingJames Peach2007-10-108-74/+582
| | | | | | sockets to listen on a little, because in the launchd case these are provided for us. We also add an idle timeout so that a daemon can exit after a period of inactivity.
* r22417: Refactor the various daemon run-mode options to make the semanticsJames Peach2007-10-106-92/+116
| | | | of the various flags explicit.
* r22416: Remove precompiled headers on clean.James Peach2007-10-101-2/+5
|
* r22413: Simplify the build rules for plugin modules. Add support for ↵James Peach2007-10-103-109/+76
| | | | | | per-platform exports files. Fix the shared library build pf pdb_ldap.
* r22412: Add a "deletelocalgroup" subcommand to net sam.Michael Adam2007-10-101-0/+42
| | | | Thanks to Karolin Seeger <ks@sernet.de>.
* r22411: Fix the build:Michael Adam2007-10-101-3/+5
| | | | | | | | | | Prototype of create_aio_ex_read, set_message and definition of UNIXERROR have changed in r22389 and r22391? to require an additional "inbuf" argument. Some places in smbd/aio.c had not been adapted. This patch fixes the build. Michael
* r22402: Fix build warning.Günther Deschner2007-10-101-1/+1
| | | | Guenther
* r22401: Add bzr revision+nick support to mkversion.sh.Michael Adam2007-10-101-0/+9
| | | | | | | | | The plan is to actually synchronize with SAMBA_4_0's mkversion.sh, which is more elaborate. But there are a few differences in behaviour I still have to check. So I am cheching this here in for a start... Michael
* r22395: allow profiling level to be set on startupHerb Lewis2007-10-102-6/+23
|
* r22394: Remove test directory once we are finished.James Peach2007-10-101-0/+2
|
* r22393: fix cut&paste errorSimo Sorce2007-10-101-1/+1
|