summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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.
| * r9523: Fix password history for eDirectoryGünther Deschner2005-08-231-1/+1
| | | | | | | | | | | | | | | | | | (by allowing to store more then 1 password history entry in LDAP...) Thanks to Bernhard Borgmann @ Novell for showing me how to debug eDirecory. Guenther
| * 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-2216-71/+97
| | | | | | | | | | | | | | 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.
| * r9435: Ignore tags files and precompiled headersJelmer Vernooij2005-08-200-0/+0
| |
| * 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
| |
| * r9303: Clobber compiler warnings. Patch from Jason Mader ↵James Peach2005-08-132-8/+30
| | | | | | | | | | | | <jason@ncac.gwu.edu> plus some extra function declarations. Bugzilla bug #2523.
| * r9302: Change AC_LIBTESTFUNC to check in the current $LIBS before adding the newJames Peach2005-08-131-7/+13
| | | | | | | | | | library. This stop us adding spurious libraries when the symbol we are looking for is in libc. Bugzilla bug #2471.
| * r9301: Allow user-defined list and lookup timeouts on IRIX. Bugzilla bug #2284.James Peach2005-08-131-1/+16
| |
| * r9293: Fix error path memory leak bug found by Coverity - also potential NULLJeremy Allison2005-08-131-20/+28
| | | | | | | | | | deref bug (in unlikely error path) found by Coverity. Jeremy.
| * r9290: Some error path cleanups found by Coverity. Whitespace reformatting.Jeremy Allison2005-08-131-232/+277
| | | | | | | | | | This file need a lot of error path cleanup. Jeremy.
| * r9288: Whitespace cleanup and memory leak on error path fix found by Coverity.Jeremy Allison2005-08-121-55/+60
| | | | | | | | Jeremy.
| * r9286: Fix false positive found by Coverity - wcard must not be null.Jeremy Allison2005-08-121-12/+14
| | | | | | | | Jeremy.
| * r9282: Whitespace.Jeremy Allison2005-08-121-10/+10
| | | | | | | | Jeremy.
| * r9281: Fixes from Luke Mewburn <lukem@NetBSD.org> for misuses ofJeremy Allison2005-08-121-5/+36
| | | | | | | | | | AC_CHECK_HEADERS. Jeremy.
| * r9278: Remove unused variable. Bugzilla #2983.Tim Potter2005-08-121-2/+1
| |
| * r9277: Another unused variable. Bugzilla #2985.Tim Potter2005-08-121-2/+0
| |
| * r9276: Fix another unused variable warning. Bugzilla #2981.Tim Potter2005-08-121-4/+1
| |
| * r9275: Remove some dead code. Bugzilla #2982.Tim Potter2005-08-121-3/+0
| |
| * r9272: Patch for fixing unused variables warning from Jason Mader. Fixes Tim Potter2005-08-121-6/+6
| | | | | | | | bugzilla #2984.
| * r9271: Fix problems with german umlauts - strcmp_w was broken (needs to ↵Jeremy Allison2005-08-122-9/+9
| | | | | | | | | | | | | | always re-call macro on termination). Fix all other cases where this was also occurring. Jeremy.
| * r9266: fix help links in swat editor after doc layout changesGerald Carter2005-08-122-5/+5
| |
| * r9264: fix valgrind invalid write error in enumprinterdata()Gerald Carter2005-08-121-2/+3
| |
| * r9261: Fix #2976: windows member servers wouldn't alloc connections from usersJim McDonough2005-08-121-0/+9
| | | | | | | | | | | | | | | | defined locally because if we didn't find them as a DC we were marking the response as authoritative. Now if it's not a domain we know, we mark the response non-authoritative. Fix from jpjanosi@us.ibm.com
| * r9253: From Samba4 tridge commit - added a new DOS error code (thanks to EMC)Jeremy Allison2005-08-121-0/+1
| | | | | | | | Jeremy.
| * r9252: 2 type fixes from Luke Mewburn <lukem@NetBSD.org>. Bugid #2934.Jeremy Allison2005-08-122-2/+5
| | | | | | | | Jeremy.