summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Move net ads lookup improvements over from HEADJim McDonough2003-02-281-61/+142
| |
* | *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-1/+25
| | | | | | | | | | | | | | * 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 merge from headMartin Pool2003-02-271-5/+6
| |
* | Merge 1.100 patch from HEAD:Martin Pool2003-02-271-8/+15
| | | | | | | | | | | | init_valid_table: Fix a memory leak that would lose the dynamically-created valid table every time the configuration was reloaded.
* | 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.
* | Merge adding -Wwrite-strings to our CFLAGS when --enable-developer is setAndrew Bartlett2003-02-261-2/+2
| |
* | Link wbinfo with popt_common.oTim Potter2003-02-261-1/+2
| |
* | Merge of exit path cleanup for EnumDomainUsers.Tim Potter2003-02-261-41/+23
| |
* | Merge of python prototype header removal.Tim Potter2003-02-261-29/+0
| |
* | Merge: newline on debug message.Tim Potter2003-02-251-1/+1
| |
* | Merge: add popt_common_version to command line options table.Tim Potter2003-02-254-0/+4
| |
* | Merge: const fixes.Tim Potter2003-02-251-110/+87
| | | | | | | | | | | | Merge: add popt_common_version to command line options table. Merge: mbp's rewrite of do_cmd()
* | Merge: const fixes.Tim Potter2003-02-251-1/+2
| | | | | | | | Merge: add popt_common_version to command line options table.
* | Merge: const fixes.Tim Potter2003-02-2516-119/+136
| |
* | Merge: fix compiler warning.Tim Potter2003-02-251-0/+7
| |
* | 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.
* | Merge from HEAD. Use pstrcpy not safe_strcpy.Jeremy Allison2003-02-241-2/+2
| | | | | | | | Jeremy.
* | Merge from head. Move off-by-one buggy malloc()/safe_strcpy() combination to ↵Jeremy Allison2003-02-241-3/+1
| | | | | | | | | | | | strdup() instead. Jeremy.
* | Merge documentation from HEADMartin Pool2003-02-241-6/+13
| |
* | Make sure these values are never uninitialsised.Andrew Bartlett2003-02-241-2/+2
| |
* | Cleint-side-auth/kerberos fixes from HEAD, and don't connect to a shareAndrew Bartlett2003-02-243-25/+67
| | | | | | | | | | | | twice, let the libsmb code determine what form the share name should take. Andrew Bartlett
* | Iconv as seperate library fixes from HEADAndrew Bartlett2003-02-241-0/+5
| |
* | Signed/unsigned fix from HEADAndrew Bartlett2003-02-241-2/+2
| |
* | Merge crypt(), ACL lib and shared lib changes from HEAD.Andrew Bartlett2003-02-243-57/+252
| |
* | Merge paramaters for client-side-auth updates.Andrew Bartlett2003-02-241-0/+11
| |
* | Fix a small stuffup in the HEAD -> 3.0 mergeAndrew Bartlett2003-02-241-1/+0
| |
* | Merge doxygen, signed/unsigned, const and other small fixes from HEAD to 3.0.Andrew Bartlett2003-02-2413-247/+284
| | | | | | | | Andrew Bartlett
* | Makefile updates for the client-side auth/kerberos merge.Andrew Bartlett2003-02-241-39/+53
| |
* | Missed a couple of files from the client-side kerberos mergeAndrew Bartlett2003-02-243-4/+19
| |
* | Merge off-by-one fix from HEAD (caused crash with --enable-developer)Andrew Bartlett2003-02-241-1/+1
| |
* | Merge from HEAD client-side authentication changes:Andrew Bartlett2003-02-2416-673/+1121
| | | | | | | | | | | | | | | | | | | | - new kerberos code, allowing the account to change it's own password without special SD settings required - NTLMSSP client code, now seperated from cliconnect.c - NTLMv2 client code - SMB signing fixes Andrew Bartlett
* | Missed one in the previous merge - user_ok() and user_in_group() now takeAndrew Bartlett2003-02-241-1/+1
| | | | | | | | an optional list of groups the user is in.
* | Merge of server-side authentication changes to 3.0:Andrew Bartlett2003-02-2413-153/+224
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - user_ok() and user_in_group() now take a list of groups, instead of looking for the user in the members of all groups. - The 'server_info' returned from the authentication is now kept around - in future we won't copy the sesion key, username etc, we will just referece them directly. - rhosts upgraded to use the SAM if possible, otherwise fake up based on getpwnam(). - auth_util code to deal with groups upgraded to deal with non-winbind domain members again. Andrew Bartlett
* | Add comment about Samba character sets, from explanation by abartlet.Martin Pool2003-02-241-0/+13
| |
* | When checking is_locked() new WRITE locks conflict with existing READ locks evenJeremy Allison2003-02-221-3/+10
| | | | | | | | | | if the context is the same. See LOCKTEST7 in smbtorture. Jeremy.
* | s/unistr2_to_dos/unistr2_to_ascii/ to fix compileGerald Carter2003-02-211-1/+1
| |
* | couple of merges from APP_HEADGerald Carter2003-02-212-5/+26
| | | | | | | | | | | | | | | | * performance optimization in enumprinterdataex() when keyname is empty * fix a few typos in comments * reload services after addprinter_command() dump registry data in ascii when the key is REG_SZ or REG_MULTI_SZ
* | patch from Hal Roberts check for a valid [f]chmod_acl function pointer ↵Gerald Carter2003-02-211-2/+12
| | | | | | | | before calling it. Fixes seg fault in audit VFS module
* | Fix IRIX build...void fn can't return another void fnJim McDonough2003-02-211-1/+2
| |
* | Added comments to make it clearer when we're assigning a pointer that itJeremy Allison2003-02-211-0/+12
| | | | | | | | | | must not be freed afterwards. Jeremy.
* | Ignore errors on python_clean target.Tim Potter2003-02-211-1/+1
| |
* | Added Volkers "print server role" patch.Jeremy Allison2003-02-201-0/+22
| | | | | | | | Jeremy.
* | Compile in lib/module.oJelmer Vernooij2003-02-201-1/+1
| |
* | Merge in smb_load_module() function from HEADJelmer Vernooij2003-02-201-24/+0
| |
* | Remove obsolete filesJelmer Vernooij2003-02-202-1699/+0
| |
* | Ensure tdb error code is set for corrupt and i/o errors before callingJeremy Allison2003-02-201-1/+24
| | | | | | | | | | the log function. This allows the log function to take action. Jeremy.