summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
* r23620: Convert set_nt_acl to return NTSTATUS. Also fix the chownJeremy Allison2007-10-1013-144/+94
| | | | | | | | | return to correctly return NT_STATUS_INVALID_OWNER if it should be disallowed. Matches better what W2K3R3 does. NFSv4 ACL module owners, please examine these changes. Jeremy.
* r23619: Fix compile warning in fill_grent_mem() caused by mismatched counter ↵Gerald Carter2007-10-101-1/+1
| | | | size.
* r23616: Fix bugzilla #4719: must change password is not set from usrmgr.exe.Jim McDonough2007-10-104-4/+84
| | | | | | | | | | This was only affecting the newer versions of usrmgr.exe, because they use a user_info_25 struct. The password is getting set separately inside that code, so the password last set time was getting set from the password change logic. We also were not parsing a number of fields (like logon hours) from the user_info_25. That should also be fixed.
* r23612: Revert 'net idmap dump' to the 3.0.24 behaviour.Volker Lendecke2007-10-101-31/+32
|
* r23611: Fix typo in error message.James Peach2007-10-101-1/+1
|
* r23610: Move some winbindd_cache specific flags and actionsMichael Adam2007-10-102-8/+20
| | | | | | | | back to winbindd_cache.c. The generic mechanism should open the cache tdb readonly and with default flags. Michael
* r23609: Removing more redundant codepaths out of smb_krb5_renew_ticket().Günther Deschner2007-10-101-38/+26
| | | | | | Thanks Volker for the pointer hint :) Guenther
* r23608: Just inline comment cosmetics.Günther Deschner2007-10-101-5/+2
| | | | Guenther
* r23607: Add legacy support for Services for Unix (SFU) 2.0.Günther Deschner2007-10-104-25/+110
| | | | Guenther
* r23606: Merge Samba4 mkversion.sh to Samba3.Kai Blin2007-10-101-45/+108
|
* r23601: BUG 4579: Don't mark the SAM domain on a Samba DC as an internal ↵Gerald Carter2007-10-101-0/+6
| | | | domain or else all network connections from the local winbindd will fail
* r23600: First step in abstracting the winbindd cache validationMichael Adam2007-10-103-219/+238
| | | | | | | code into a generic tdb validation code. In lib/util_tdb.c for a start. Michael
* r23599: Add new version of indent script copied from the the LinuxGerald Carter2007-10-101-16/+7
| | | | kernel tree.
* r23598: Add script for running indent and remove .indent.pro fileGerald Carter2007-10-102-30/+21
|
* r23597: add a few utility scripts for code formattingGerald Carter2007-10-102-0/+33
|
* r23596: Add notes about smbfs/cifs to usage() in smb[u]mountVolker Lendecke2007-10-102-1/+6
|
* r23595: One pstring a day...Volker Lendecke2007-10-101-7/+19
|
* r23594: Fix parsing of local pids if cluster support is compiled in but noVolker Lendecke2007-10-101-0/+4
| | | | cluster is used
* r23593: Mention "net conf" in top level net usage.Michael Adam2007-10-101-2/+3
| | | | Michael
* r23592: Change a debuglevel to not clutter output when callingMichael Adam2007-10-101-1/+1
| | | | | | net as a non-root user, e.g. Michael
* r23591: Fix bug #4725. Don't crash when no eventlogs specified. NeedsJeremy Allison2007-10-102-0/+8
| | | | | merging for 3.0.25b. Jeremy.
* r23590: Fix realloc leak on failure case from Jim Meyering <jim@meyering.net>.Jeremy Allison2007-10-101-1/+5
| | | | Jeremy.
* r23589: Ensure we will always release any timeout handlerJeremy Allison2007-10-102-6/+7
| | | | | | on fsp close or removal of oplock. Mulitple removals are safe. Jeremy.
* r23588: Some more cleanups and error checks in the krb5 renew function.Günther Deschner2007-10-101-6/+12
| | | | Guenther
* r23587: Cleanup redundant code in the krb5 renew function.Günther Deschner2007-10-101-23/+16
| | | | Guenther
* r23586: Fix heimdal path in the krb5 renew routine when we need to compose ↵Günther Deschner2007-10-101-1/+5
| | | | | | | | the tgt string ourselves. Guenther
* r23585: Add a "drop" function to "net conf" that clears theMichael Adam2007-10-101-0/+81
| | | | | | whole configuration stored in registry. Michael
* r23584: Use a while loop instead of a for loop without increment... :-)Michael Adam2007-10-101-9/+2
| | | | Michael
* r23583: Add a utility function to recursively delete a RegistryMichael Adam2007-10-101-0/+56
| | | | | | | key with all its subkeys. (reg_deletekey will refuse to delete a key with subkeys with WERR_ACCESS_DENIED). Michael
* r23582: Fix event based krb5 ticket refreshing in winbindd.Günther Deschner2007-10-102-6/+6
| | | | | | | We were incorrectly using the renew_till timestamp instead of the renewed ticket's endtime to calculate the next refreshing date. Guenther
* r23581: Move regkey_open_onelevel from reg_frontend to reg_api,Michael Adam2007-10-102-117/+110
| | | | | | where it actually belongs, and make it static. Michael
* r23579: Up to now, the "allparameters" argument to lp_next_parameter wasMichael Adam2007-10-101-0/+3
| | | | | | | | | | | | not effective for the global section (snum < 0). This checkin makes it effective for the global section, too. This does not produce changes in the results of the present calls of lp_next_parameter: Beside the new use in utils/net_conf.c (which is hereby fixed), the only calls of lp_next_parameter are in web/swat.c, where it is effectively always called with allparameters == 1. Michael
* r23578: When calling DeleteKey for a key that has subkey(s), WindowsMichael Adam2007-10-101-4/+17
| | | | | | | returns WERR_ACCESS_DENIED. This adapts reg_deletekey to behave the same way. Michael
* r23577: Fix winbindd (sorry). Ensure I set the new child_pidJeremy Allison2007-10-101-1/+3
| | | | | | variable at the correct point just before the write call is scheduled. Jeremy.
* r23576: Fix some confusion between HAVE_BROKEN_GETGROUPS and USE_BSD_SETGROUPS.James Peach2007-10-101-4/+4
|
* r23575: Fix a segfault when lp_load is called before init_registry.Michael Adam2007-10-101-0/+2
| | | | Michael
* r23574: Remove double-null check (I hate people bitching at meJeremy Allison2007-10-101-3/+1
| | | | | on the lists :-). Jeremy.
* r23573: Cope with terminating winbindd children on read/write/timeoutJeremy Allison2007-10-101-38/+45
| | | | | | | | | communication failures. Set timeout to 5 mins. Ensure that we're terminating the correct child (the one we thought we were talking to). Still setting up my testing environment but I have high hopes for this being the fix for the 3.0.25b showstopper. Jeremy.
* r23572: Ensure we obey Unicode consortium restrictions. CodeJeremy Allison2007-10-101-15/+22
| | | | | based on patch from MORIYAMA Masayuki <moriyama@miraclelinux.com>. Jeremy.
* r23571: Fix, parsing of multi byte share names.Simo Sorce2007-10-101-16/+10
| | | | | | | | | | | Thanks to SATOH Fumiyasu Fixes 4720 Jerry, this is a showstopper for 3.0.25b, please grab it into SAMBA_3_0_RELEASE before cuting the tarballs. Simo.
* r23569: Also dump fd_event in dump_event_list().Günther Deschner2007-10-101-1/+10
| | | | Guenther
* r23568: Remove last traces of Heimdal KCM support (and don't misuse wbinfo ↵Günther Deschner2007-10-101-25/+4
| | | | | | | | where a torture test would be much more appropriate). Fix #4408. Guenther
* r23567: Fix bug 4721Volker Lendecke2007-10-101-1/+1
|
* r23566: Fix the sys_bsd_setgroups function. The actual workaround was inactive.Michael Adam2007-10-101-3/+1
| | | | Michael
* r23565: Avoid double NULL pointer checks.Günther Deschner2007-10-102-18/+6
| | | | Guenther
* r23564: Handle MSG_DUMP_EVENT_LIST only in winbindd for now.Günther Deschner2007-10-102-0/+42
| | | | Guenther
* r23563: Add dump-event-list command to smbcontrol.Günther Deschner2007-10-102-0/+20
| | | | Guenther
* r23562: Add dump_event_list() for debugging the event list.Günther Deschner2007-10-101-0/+24
| | | | Guenther
* r23556: Fix for error path from Atsushi Nakabayashi ↵Jeremy Allison2007-10-101-0/+1
| | | | | | <nakabayashi@miraclelinux.com>. Jeremy.
* r23555: Fix some uninitialiazed variable uses.Jeremy Allison2007-10-101-2/+6
| | | | Jeremy