summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
| * r9758: make sure to lower case usernames in winbindd's getpwnam()Gerald Carter2005-08-291-1/+4
| |
| * r9752: figured out why talloc_steal() is a bad idea for SEC_DESC*Gerald Carter2005-08-291-2/+10
| | | | | | | | Add a comment so someone else doesn't get bitten by this as well.
| * r9739: conver the reg_objects (REGSUBKEY_CTR & REGVAL_CTR) to useGerald Carter2005-08-2917-768/+480
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the new talloc() features: Note that the REGSUB_CTR and REGVAL_CTR objects *must* be talloc()'d since the methods use the object pointer as the talloc context for internal private data. There is no longer a regXXX_ctr_intit() and regXXX_ctr_destroy() pair of functions. Simply TALLOC_ZERO_P() and TALLOC_FREE() the object. Also had to convert the printer_info_2->NT_PRINTER_DATA field to be talloc()'d as well. This is just a stop on the road to cleaning up the printer memory management.
| * r9738: Adapt tdb_torture to the new CLEAR_IF_FIRST semantics. We need one parentVolker Lendecke2005-08-291-33/+33
| | | | | | | | | | | | process holding the active if two cluster nodes access the same tdb. Volker
| * r9736: be a little more verbose on error.Günther Deschner2005-08-291-5/+5
| | | | | | | | Guenther
| * r9709: Fix two bugs found by Brian Moran: Any request sent to winbind while ↵Volker Lendecke2005-08-282-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | the child in question is still initializing overwrites domain->dcname. Only overwrite if the parent actually has sent a dcname and thus really knows it. Second, ntlm_auth needs the error code, not just the fact it failed. Jerry, the 3_0 part might qualify as a "recommended patch". Thanks, Volker
| * r9661: fallback to cn attribubte if displayName is not availableGerald Carter2005-08-261-14/+14
| |
| * r9660: real fix for group enumeration bug in 3.0.20; only affected the ↵Gerald Carter2005-08-263-6/+7
| | | | | | | | ldapsam code
| * r9658: cleanup a few debug messagesGerald Carter2005-08-261-2/+2
| |
| * r9657: fix final issue with regf sk_records; profiles now successfully rewritesGerald Carter2005-08-261-6/+12
| | | | | | | | Win2k and WinXP user profile security descriptors.
| * r9656: fix bug in sk record list with next offsetsGerald Carter2005-08-261-2/+2
| |
| * r9653: adding common popt args to profiles tool (needed for debuglevel to ↵Gerald Carter2005-08-262-16/+27
| | | | | | | | regfio lib)
| * r9636: The new profiles code needs all the dummy objects to link.James Peach2005-08-261-4/+5
| |
| * r9628: rewrite profiles tool to use the regfio code.Gerald Carter2005-08-262-693/+168
| | | | | | | | Still have one bug to track down in it though....
| * r9627: Enable format string checking for the MIPSPro compilers.James Peach2005-08-261-1/+13
| |
| * r9619: Fix messages_pending_for_pid actually do what it's meant to do. This ↵Volker Lendecke2005-08-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | might be a big relief on messages.tdb contention as ignoring processes with >1000 messages in printing/notify.c should work correctly now. Jeremy, Jerry told me to ask you about printer scalability torture tests, this might be a reason why you implemented the message_send_pid_with_timeout using the signal (shudder) in the first place. :-) While looking at that... Wouldn't it be better to not use the signal but have an overall timeout for print_notify_send_messages using GetTimeOfDay & friends and not use the alarm signal deep inside tdb.c? Volker
| * r9618: adding get/put tests from Don WatsonGerald Carter2005-08-252-3/+30
| |
| * r9615: trying a 3 second timeout on smbcontrolGerald Carter2005-08-251-4/+7
| |
| * r9613: remove TMPDIR from 'make test' scripts (after comments by Don Watson)Gerald Carter2005-08-253-6/+14
| |
| * r9594: return the mapped name in enum_dom_groups()Gerald Carter2005-08-241-1/+1
| |
| * r9593: fix enumerated group name (should be full name (i.e. mapped name) and ↵Gerald Carter2005-08-241-1/+1
| | | | | | | | not unix name)
| * r9590: forget to remove this from the 3.0 treeGerald Carter2005-08-241-0/+0
| |
| * r9588: remove netsamlogon_cache interface...everything seems to work fine. ↵Gerald Carter2005-08-247-350/+2
| | | | | | | | Will deal with any fallout from special environments using a non-cache solution
| * r9585: update test #1Gerald Carter2005-08-241-0/+1
| |
| * r9584: Fix a race condition in Samba 3. If two files are opened ↵Volker Lendecke2005-08-241-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | simultaneously with NTCREATEX_DISP_CREATE (create if not exists, else fail) they might end up with two or more times NT_STATUS_OK as EEXIST is not correctly handled. Jeremy, please look closely at this. You can easily verify this by adding a smb_msleep(100) to the top of open_file_ntcreate and run the new samba4 torture test. It does also happen without the msleep, but not as reliably. Thanks, Volker
| * r9583: ensure that Samba was with with --enable-socket-wrapper for running ↵Gerald Carter2005-08-241-0/+13
| | | | | | | | 'make test'
| * r9582: a few makefile fixes for 'make test'; get the dependencies and ↵Gerald Carter2005-08-241-2/+3
| | | | | | | | cleanup right
| * r9562: successfully get the samba 3 smbtorture working (as a test case for ↵Gerald Carter2005-08-244-1/+107
| | | | | | | | infrastructre)
| * r9561: Check for alloca.h.James Peach2005-08-241-1/+1
| |
| * r9548: more additions to make test; better checks for starting and stopping smbdGerald Carter2005-08-233-21/+76
| |
| * r9545: (Hopefully the last) fixes for DIR -> SMB_STRUCT_DIR.Jeremy Allison2005-08-235-14/+16
| | | | | | | | Jeremy.
| * r9540: correct comments in struct smbc_dirent (fixes bug 3030)Derrell Lipman2005-08-231-4/+4
| |
| * r9536: Fix one more DIR -> SMB_STRUCT_DIR typo.Jeremy Allison2005-08-231-1/+1
| | | | | | | | Jeremy.
| * r9534: Fix typo spotted by William Jojo <jojowil@hvcc.edu> - defineJeremy Allison2005-08-231-2/+2
| | | | | | | | | | HAVE_STRUCT_DIR64 not HAVE_STRUCT_DIRENT64. Jeremy
| * r9532: Fix for bug #2152, championed by Neil Hoggarth ↵Jeremy Allison2005-08-231-4/+4
| | | | | | | | | | | | <neil.hoggarth@physiol.ox.ac.uk>. Jeremy.
| * r9522: Give better error-message when "NDS Universal Password" change fails.Günther Deschner2005-08-231-2/+6
| | | | | | | | Guenther
| * r9486: ensure that the registry hash records are sorted by original subkey ↵Gerald Carter2005-08-222-3/+5
| | | | | | | | name and not the 4 character hash key
| * r9483: Changed DIR to SMB_STRUCT_DIR because of the amazing stupidity of a ↵Jeremy Allison2005-08-2214-59/+85
| | | | | | | | | | | | | | UNIX vendor not understanding abstract data types :-(. Jeremy.
| * r9480: Added opendir64 and friends. Found by William Jojo <jojowil@hvcc.edu>Jeremy Allison2005-08-221-1/+2
| | | | | | | | | | as part of the AIX bug #3010 investigations. Jeremy.
| * r9457: Attempt to fix bug #3010 by handling END_OF_DIRECTORY_OFFSETJeremy Allison2005-08-211-1/+6
| | | | | | | | | | consistently. Jeremy.
| * r9401: Allow disabling mandatory byte range lock mount flag, andSteve French2005-08-191-2/+2
| | | | | | | | fix corresponding entry in mtab.
| * r9366: patch from Toomas.Soome@mls.ee to include hosts lookups via the ↵Gerald Carter2005-08-172-0/+295
| | | | | | | | winbind pipe on solaris
| * r9362: formatting cleanupGerald Carter2005-08-171-28/+21
| |
| * r9361: patch from Ed Plese to fix a faulty error in winbinddGerald Carter2005-08-171-13/+12
| | | | | | | | caused by users with no supplementary groups.
| * r9353: Updating troublshooting error message.John Terpstra2005-08-171-1/+2
| |
| * r9350: Fix direct malloc calls made by smbwrapper.Jeremy Allison2005-08-171-3/+3
| | | | | | | | Jeremy.
| * r9330: Remove the classic dual daemon since it was not being used.Gerald Carter2005-08-163-238/+3
| | | | | | | | | | | | It was already gone in trunk anyways. working on fixing BUG 3000 which does work now but we are flying without a cache.
| * r9325: Remember to ignore FILE_SHARE_DELETE when mapping to old shareJeremy Allison2005-08-161-2/+1
| | | | | | | | | | modes for display. Jeremy.
| * r9322: fixing debug log and ensuring that we set the right winbind_methodsGerald Carter2005-08-162-4/+6
| | | | | | | | | | pointer in get_cache() by requiring that all domain structure be initialized with the set_dc_type_and_flags().
| * r9304: BUG 3001: don't use C style comments in configure.in (thanks Jason)Gerald Carter2005-08-141-1/+1
| |