summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
| * r13329: Fix libsmbsharemodes.so to work with the stored delete token.Jeremy Allison2006-02-043-33/+48
| | | | | | | | | | | | Less trouble than I thought plus it didn't need an interface change (thank goodness !). Jeremy.
| * r13322: Fix warning time_t != int.Jeremy Allison2006-02-031-2/+2
| | | | | | | | Jeremy.
| * r13318: remove an unused fileGerald Carter2006-02-031-85/+0
| |
| * r13316: Let the carnage begin....Gerald Carter2006-02-03185-7131/+22252
| | | | | | | | Sync with trunk as off r13315
| * r13314: This code has been causing problems since 1.9.x I think.Jeremy Allison2006-02-031-19/+0
| | | | | | | | | | | | | | Remove check_for_pipe() - Volker was completely correct. If it gets re-added it will be in a old open call path, not in the generic code path. Jeremy.
| * r13310: first round of server affinity patches for winbindd & net ads joinGerald Carter2006-02-038-219/+275
| |
| * r13309: If the sid in the winbind name2sid cache is not valid ↵Volker Lendecke2006-02-031-1/+3
| | | | | | | | | | | | | | | | | | (NT_STATUS_NONE_MAPPED), we have S-0-0 as a SID in the cache. This leads to ugly level 0 messages from string_to_sid. Avoid them. Volker
| * r13299: From testing W2K3 and W2K the delete on close bit seems to be alwaysJeremy Allison2006-02-031-3/+3
| | | | | | | | | | | | | | | | honored (ie. the file gets deleted) for derectories when set at open time - even though it doesn't show in the qfileinfo call. This is not true of files.... (if anyone from the EU is listening, it's stuff like this that makes CIFS non-documentable :-). Jeremy.
| * r13294: Fix basic delete on close tests - don't forget to tellJeremy Allison2006-02-021-5/+10
| | | | | | | | | | the data struct how big the token is... :-). Jeremy.
| * r13293: Rather a big patch I'm afraid, but this should fix bug #3347Jeremy Allison2006-02-0225-278/+427
| | | | | | | | | | | | | | | | by saving the UNIX token used to set a delete on close flag, and using it when doing the delete. libsmbsharemodes.so still needs updating to cope with this change. Samba4 torture tests to follow. Jeremy.
| * r13291: NT checks the minimum password age dynamically. That means we have ↵Volker Lendecke2006-02-021-5/+21
| | | | | | | | | | | | | | | | | | to ignore the sambapwdmustchange field if we can access the corresponding account policy and calculate it dynamically based on the pwdlastset field. Volker
| * r13274: Fix for bug #3467. Not a show stopper.Jeremy Allison2006-02-015-29/+44
| | | | | | | | | | | | jason qian <jason@infrant.com> was a *fantastic* help in tracking this down. Jeremy.
| * r13262: Arrgggg. Fix smbstatus and swat status to ignoreJeremy Allison2006-01-312-1/+12
| | | | | | | | | | | | | | bloody placeholder share mode entries (I hate these - I've had to add this filter code now to too many places :-). Jeremy.
| * r13260: Fix stupid bug Volker found for big-endian machines.Jeremy Allison2006-01-311-1/+1
| | | | | | | | Jeremy.
| * r13257: Fix python build with older python versions (e.g. 2.2.1) like in ↵Lars Müller2006-01-311-2/+2
| | | | | | | | United Linux 1 (UL) aka SuSE Linux Enterprise Server (SLES) 8.
| * r13238: Fix from Qiao Yang <qyang@stbernard.com> to ensure weJeremy Allison2006-01-301-2/+3
| | | | | | | | | | | | always update the failed time when we are adding a failed connection. Jeremy.
| * r13233: build fixes for smbmnt; remove unused variable; ready to ship ↵Gerald Carter2006-01-302-2/+1
| | | | | | | | 3.0.21b now
| * r13232: defensive programming in an attempt to prevent crashes due to a PDC ↵Gerald Carter2006-01-301-3/+5
| | | | | | | | rebooting
| * r13231: apparently strncat() is converted to strcat() on RH7.3 and similar ↵Gerald Carter2006-01-301-2/+4
| | | | | | | | systems. Fix the build on those boxes
| * r13229: * fix bad comparison caught by the AIX compiler in wbinfo codeGerald Carter2006-01-302-4/+9
| | | | | | | | * update output from mkversion.sh to include the SAMBA_VENDOR_PATCH
| * r13224: better to cast the return tooSimo Sorce2006-01-291-1/+1
| |
| * r13222: Never assume mode_t is of type int.Simo Sorce2006-01-291-2/+2
| | | | | | | | We were trashing the stack on machines that define mode_t as uint16_t
| * r13216: r12422@cabra: derrell | 2006-01-28 23:57:35 -0500Derrell Lipman2006-01-292-50/+17
| | | | | | | | | | | | | | Fix cli_setpathinfo() to actually do what it's supposed to. Also, get rid of some apparently drug-induced code to deal with create time which isn't being manipulated anyway.
| * r13214: r12420@cabra: derrell | 2006-01-28 19:10:58 -0500Derrell Lipman2006-01-291-44/+57
| | | | | | | | | | | | | | | | | | | | | | This should fix bug #3446. - The authentication domain provided an an SMB URL was being ignored. This patch fixes that. - There were a number of places where string copies were not being confirmed to be properly null-terminated. Now, all string copies in libsmbclient.c are properly null-terminated.
| * r13212: r12414@cabra: derrell | 2006-01-28 17:52:17 -0500Derrell Lipman2006-01-2841-47/+56
| | | | | | | | | | | | | | | | | | | | | | | | lp_load() could not be called multiple times to modify parameter settings based on reading from multiple configuration settings. Each time, it initialized all of the settings back to their defaults before reading the specified configuration file. This patch adds a parameter to lp_load() specifying whether the settings should be initialized. It does, however, still force the settings to be initialized the first time, even if the request was to not initialize them. (Not doing so could wreak havoc due to uninitialized values.)
| * r13211: Fix remote password changing if password must change is setVolker Lendecke2006-01-281-1/+36
| | | | | | | | | | | | | | | | | | | | | | The problem was that the ntlmssp bind silently failed in that case, we have to do it anonymously. Or does anybody have a better idea? Give a better error message if something else is wrong with the account. Volker
| * r13209: Make smbpasswd -a work again if passdb did not exist.Volker Lendecke2006-01-281-0/+1
| | | | | | | | Volker
| * r13202: Fix the build for --with-aio-support. Sorry.Volker Lendecke2006-01-281-2/+2
| | | | | | | | | | | | | | | | Jeremy, configure.in decides whether aio support works quite early in the sequence of checks. Wouldn't it be better to only use aio support if really all necessary functions actually are around? Volker
| * r13198: Fix issues exposed by Jerry's testing on 64-bit SolarisJeremy Allison2006-01-273-78/+138
| | | | | | | | | | (I hope). Separate 3.0.21b patch sent to Jerry. Jeremy.
| * r13197: Add -k switch to dump the data of a single key.Lars Müller2006-01-271-5/+41
| |
| * r13194: Don't do extra memcpy's unless we're asked to.Jeremy Allison2006-01-271-1/+5
| | | | | | | | Jeremy.
| * r13192: Fix up alignment issues when printing share modeJeremy Allison2006-01-272-4/+17
| | | | | | | | | | | | entries. Add paranioa to debug so we know when an entry is unused. Jeremy.
| * r13190: Fix #3458 from Andriy Gapon <avg@icyb.net.ua>. Don'tJeremy Allison2006-01-271-1/+1
| | | | | | | | | | | | access free'd memory. Jerry please pick up for 3.0.21b ! Jeremy.
| * r13176: Fix show-stopper bug for 3.0.21b where 4 leg NTLMSSP SPNEGOJeremy Allison2006-01-272-2/+24
| | | | | | | | | | | | | | auth was not generating the correct auth header on the 4th packet. This may fix a lot of Windows client complaints and is essential for release. Jeremy.
| * r13175: Actually make adding a new user into an empty pdbtdbJeremy Allison2006-01-271-1/+1
| | | | | | | | | | file create the file. Jeremy.
| * r13172: Fix incorrect error message when new tdb not created correctly.Jeremy Allison2006-01-261-1/+1
| | | | | | | | Jeremy.
| * r13162: Allow to set the flags for a ds_enum_domain_trusts query in rpcclient.Günther Deschner2006-01-261-1/+5
| | | | | | | | Guenther
| * r13148: Fix bug: #3413Simo Sorce2006-01-261-3/+9
| | | | | | | | | | | | | | | | | | Check that ldap admin dn is defined in smb.conf before setting the ldap password in secrets.tdb Based on patch by William Jojo <jojowil@hvcc.edu> Simo.
| * r13147: Raise creds_server_step fail log messages to debug level 2.Jeremy Allison2006-01-252-4/+4
| | | | | | | | | | | | | | These can happen in normal operation (I think - not 100% sure) and don't want to alarm admins. Jerry please add this to 3.0.21b. Jeremy.
| * r13140: Fix swat - make sure it can list running services (ensure loopback_ip)Jeremy Allison2006-01-251-0/+1
| | | | | | | | | | is defined. Jerry - this needs to be in 3.0.21b. Jeremy.
| * r13138: old fix I forgot to commitSimo Sorce2006-01-251-2/+5
| | | | | | | | need to access info when using the ldap backend
| * r13137: make cleare where long ifdefs endsSimo Sorce2006-01-251-2/+2
| |
| * r13136: Fix handling user sid and user gidSimo Sorce2006-01-251-2/+4
| |
| * r13133: patch from Makr Proehl <m.proehl@science-computing.de> for dumping ↵Gerald Carter2006-01-251-1/+1
| | | | | | | | server role when calling 'testparm -s' (BUG 1336)
| * r13125: Very well spotted crash bug fix for #3343 fromJeremy Allison2006-01-251-2/+0
| | | | | | | | | | | | SATOH Fumiyasu <fumiyas@miraclelinux.com> Jerry please pick this up for 3.0.21b. Jeremy.
| * r13119: Fix for #1779 from William Jojo <jojowil@hvcc.edu>Jeremy Allison2006-01-241-4/+6
| | | | | | | | Jeremy.
| * r13110: remove an invalid debug message about call get_share_mode_lock() ↵Gerald Carter2006-01-241-1/+0
| | | | | | | | with a NULL service path and fname (we do it all the time internally)
| * r13095: Fix warnings assigning int to a size_t.Jeremy Allison2006-01-233-3/+5
| | | | | | | | Jeremy.
| * r13093: adding vendor patch level string as announced on samba-technical mlGerald Carter2006-01-233-10/+36
| |
| * r13091: Fix gcc warning about using '0' with %s.Jeremy Allison2006-01-231-1/+1
| | | | | | | | Jeremy.