summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Ensure added jobs increment total_jobs.Jeremy Allison2003-03-011-0/+6
| | | | Jeremy.
* Fix HTTP error codes (patch by Vance Lankhaar)Jelmer Vernooij2003-02-281-3/+3
|
* fixed a crash bug in the new winbindd 'sids rule!' codeAndrew Tridgell2003-02-281-1/+1
|
* Doxygen janitor: add note that strequal is in fact case-insensitive.Martin Pool2003-02-281-6/+8
|
* - added help on -P optionAndrew Tridgell2003-02-281-0/+2
| | | | - added general options to 'net -h' help
* Doxygen janitorMartin Pool2003-02-283-9/+9
|
* Doxygen janitor: fix parameter names, grammar, tag names.Martin Pool2003-02-281-14/+14
|
* Doxygen janitor: rpc_resolve_dc parameter is spelled "trust_passwd"Martin Pool2003-02-281-1/+1
|
* Doxygen janitor: check_domain_match parameter is spelledMartin Pool2003-02-281-2/+2
| | | | "auth_context".
* Fix comment typoMartin Pool2003-02-281-1/+1
|
* Remove reference to "mainpage.dox" and CodingStandards, which haveMartin Pool2003-02-282-11/+3
| | | | | | | been removed. Put subdirectory names in file list, so we get lib/util_chr.c, not just util_chr.c.
* Add a comment about the meaning of samba's internal character set andMartin Pool2003-02-281-0/+24
| | | | how this interacts with it.
* Add simple test harness that exposes StrCaseCmp for testing.Martin Pool2003-02-281-0/+20
|
* cleanup some compiler warningsJim McDonough2003-02-281-3/+3
|
* Improve net ads lookup:Jim McDonough2003-02-281-61/+142
| | | | | | | - More info is printed - (grand)child domains handled properly Thanks to Anthony Liguori (aliguori@us.ibm.com)
* *Excellent* patch from Michael Steffens <michael_steffens@hp.com> to limitJeremy Allison2003-02-283-15/+61
| | | | | | | | | the unix domain sockets used by winbindd (also solves FD_SETSIZE problem in winbindd to boot !). Adds a "last_access" field to winbindd connections, and will close the oldest idle connection once the number of open connections goes over WINBINDD_MAX_SIMULTANEOUS_CLIENTS (defined in local.h as 200 currently). Jeremy.
* don't forget the NULLGerald Carter2003-02-271-3/+3
|
* and the winner of "i should have just written it in assemblyGerald Carter2003-02-271-3/+3
| | | | | | is..." don't use pstrcpy() when you are not dealing with pstrings.
* don't pass NULL pointers to strcmp()Gerald Carter2003-02-271-2/+2
|
* additional fix for CR 601Gerald Carter2003-02-274-2/+26
| | | | | | | * distinguish WinXP from Win2k * add a 1/3 of a second delay in OpenPrinter in order to trigger a LAN/WAN optimization in 2k clients.
* Doxygen janitorMartin Pool2003-02-271-5/+6
|
* Remove documentation for obsolete parameters, but add a note in ↵Jelmer Vernooij2003-02-272-146/+18
| | | | 'upgrading-to-3.0'
* We now use <anchor/> instead of just <anchor> (strict XML syntax)Jelmer Vernooij2003-02-271-1/+1
|
* - Rename 'modules = ' to 'preload modules = 'Jelmer Vernooij2003-02-276-29/+77
| | | | | | - Add smb_probe_module() - Add init_modules() - Call these functions
* Fix possible memory leak on failure.Andrew Bartlett2003-02-271-0/+1
|
* Fix to allow blocking lock notification to be done rapidly (no waitJeremy Allison2003-02-277-19/+162
| | | | | | for smb -> smb lock release). Adds new PENDING_LOCK type to lockdb (does not interfere with existing locks). Jeremy.
* Add -Wwrite-strings to our --enable-developer settings.Andrew Bartlett2003-02-261-2/+2
| | | | | | | We have compiled relitivly 'clean' with this setting since I did a massive cleanup last month. This should help us stay that way. Andrew Bartlett
* Netlogon-unigroup changes needed for the winbind RID-to-SID conversion.Andrew Bartlett2003-02-261-12/+25
| | | | | | | This changes the cache format, which will simply invalidate existing entries, leaving them dead in the cache. Andrew Bartlett
* Kill RID-only and domain+RID madness from winbind.Andrew Bartlett2003-02-269-440/+377
| | | | | | | | | | | | | | | | | | | Now we deal with SIDs in almost all of winbind (a couple of limited exceptions remain, but I'm looking into them - they use non-winbind structs ATM). This has particular benifits in returning out-of-domain SIDs for group membership (Need to look into this a bit more) as well as general code quality. This also removes much of the complexity from the idmap interface, which now only deals with mapping IDs, not with SID->domain translations. Breifly tested, but needs more. Fixes some valgrind-found bugs from my previous commit. Winbind cache chagned to using SID strings in some places, as I could not follow exactly how to save and restore multiple packed sids properly. Andrew Bartlett
* init_valid_table: Fix a memory leak that would lose theMartin Pool2003-02-261-8/+15
| | | | | dynamically-created valid table every time the configuration was reloaded.
* Merge from appliance:Tim Potter2003-02-261-34/+23
| | | | | | | | | | | >Another hopeful fix for CR#1168. Change the RPC used in querying >domain users from QueryDispInfo to EnumDomainUsers. Hopefully this >will fix the random dropouts that keep occuring when listing large >domains. > >My thought is that since QueryDispInfo is only used in the NT user >manager it may have a bug with large domains. A more commonly used >RPC may not have such problems.
* Fix compiler warning.Tim Potter2003-02-251-1/+1
|
* More const fixes and flow on fixes from yesterday's const-fest.Tim Potter2003-02-2516-89/+97
|
* Fix unused variable warning when ENCTYPE_ARCFOUR_HMAC is not defined.Tim Potter2003-02-251-0/+2
|
* Fix breakage done by myself yesterday.Tim Potter2003-02-251-6/+3
|
* Progress on CR 601Gerald Carter2003-02-256-315/+388
| | | | | | | | | cache the printer_info_2 with the open printer handle. cache is invalidated on a mod_a_printer() call **on that smbd**. Yes, this means that the window for admins to step on each other from different clients just got larger, but since handles a generally short lived this is probably ok.
* Fixed up some const related compiler warnings.Tim Potter2003-02-255-39/+42
|
* After some comments from tridge, clean the new usergroups code into a helperAndrew Bartlett2003-02-251-71/+94
| | | | | | function. Andrew Bartlett
* For some reason some attributes in ADS do not appear (and are not available)Andrew Bartlett2003-02-251-1/+63
| | | | | | | | | in general searches, but only if searching for the DN only. In my case, it was the tokenGroups attribute that caused me trouble, hence this patch. Andrew Bartlett
* tokenGroups are SIDs, so dump them as such.Andrew Bartlett2003-02-251-0/+1
|
* Fix a really nasty bug where some users in AD domains (particularly childAndrew Bartlett2003-02-251-14/+90
| | | | | | | | | | | | domains) would not have the tokenGroups or memberOf attributes filled in. This would cause a user to have no supplementary group membership. Detect this by the fact that the primaryGid must be present in the tokenGroups, and if it isn't (ie, if there is no tokenGroups at all), do a server-side search on all groups using the 'member' attribute and the user's DN. Andrew Bartlett
* Whenever we have a password, use the in-memory ccache. This fixes a bug whereAndrew Bartlett2003-02-241-2/+3
| | | | | | we were overwriting the user's ccache with the machine password (the -P option). Andrew Bartlett
* Clean up non-krb5 breakages from my modifications to luke howard's patch.Andrew Bartlett2003-02-242-7/+2
| | | | Andrew Bartlett
* Finish removing setenv replacements from smbwrapper.Andrew Bartlett2003-02-242-20/+2
|
* Move off-by-one buggy malloc()/safe_strcpy() combination to strdup() instead.Andrew Bartlett2003-02-241-3/+1
| | | | Andrew Bartlett
* typoAndrew Bartlett2003-02-241-1/+1
|
* Patch from Luke Howard to add mutual kerberos authentication, and SMB sessionAndrew Bartlett2003-02-248-42/+157
| | | | | | keys for kerberos authentication. Andrew Bartlett
* setenv takes 3 arguments...Andrew Bartlett2003-02-241-4/+4
|
* If it's a pstring, use pstrcpy().Andrew Bartlett2003-02-241-2/+2
|
* Fix off-by-one bugs, and move to strdup() rather than malloc()/strcpy().Andrew Bartlett2003-02-241-16/+9
| | | | Andrew Bartlett