Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | r21585: Start syncing the monster that will become 3.0.25pre1 | Gerald Carter | 2007-02-28 | 1 | -30/+223 |
| | | | | | | | | Still todo: * release notes * few minor outstanding patches * additional idmap man pages | ||||
* | r16254: pulling klocwork fixes for 3.0.23rc3 (current up to r16251) | Gerald Carter | 2006-06-15 | 1 | -2/+3 |
| | |||||
* | r16104: Set version to 3.0.23rc2 | Gerald Carter | 2006-06-08 | 1 | -3/+3 |
| | | | | | Bring release tree up to current 3.0 tree (svn merge -r15845:16103 $SVNURL/branches/SAMBA_3_0) | ||||
* | r15101: Little step towards getting Samba4 tdb into 3: tdb_lock_bystring ↵ | Volker Lendecke | 2006-04-17 | 1 | -2/+2 |
| | | | | | | | | | does not have the timeout argument in Samba4. Add a new routine tdb_lock_bystring_with_timeout. Volker | ||||
* | r14103: Fix a memleak found by valgrind (!!) | Volker Lendecke | 2006-03-09 | 1 | -0/+1 |
| | |||||
* | r14102: Fix Coverity bug # 70 | Volker Lendecke | 2006-03-09 | 1 | -0/+4 |
| | |||||
* | r14088: Fix Coverity bug #20. Don't deref possible null. | Jeremy Allison | 2006-03-09 | 1 | -6/+9 |
| | | | | Jeremy. | ||||
* | r13571: Replace all calls to talloc_free() with thye TALLOC_FREE() | Gerald Carter | 2006-02-20 | 1 | -11/+11 |
| | | | | macro which sets the freed pointer to NULL. | ||||
* | r13548: Always use the get_remote_macinhe_name() as the key | Jeremy Allison | 2006-02-17 | 1 | -2/+4 |
| | | | | | | for the creds store. This should fix the problems Jerry reported (but I have still to run tests :-). Jeremy. | ||||
* | r13542: Don't reuse a pointer we just freed (Doh!). | Jeremy Allison | 2006-02-17 | 1 | -2/+2 |
| | | | | Jeremy. | ||||
* | r13538: Make sure we store all 16 bytes of credentials session | Jeremy Allison | 2006-02-17 | 1 | -5/+6 |
| | | | | | | key and delete records that are old. We will need this for the full 16 byte session key support. Jeremy. | ||||
* | r13519: Fix the credentials chaining across netlogon pipe disconnects. | Jeremy Allison | 2006-02-15 | 1 | -4/+10 |
| | | | | | I mean it this time :-). Jeremy. | ||||
* | r13407: Change the credentials code to be more like the Samba4 structure, | Jeremy Allison | 2006-02-09 | 1 | -0/+1 |
| | | | | | | | | makes fixes much easier to port. Fix the size of dc->sess_key to be 16 bytes, not 8 bytes - only store 8 bytes in the inter-smbd store in secrets.tdb though. Should fix some uses of the dc->sess_key where we where assuming we could read 16 bytes. Jeremy. | ||||
* | r13316: Let the carnage begin.... | Gerald Carter | 2006-02-03 | 1 | -101/+63 |
| | | | | Sync with trunk as off r13315 | ||||
* | r13310: first round of server affinity patches for winbindd & net ads join | Gerald Carter | 2006-02-03 | 1 | -29/+0 |
| | |||||
* | r13190: Fix #3458 from Andriy Gapon <avg@icyb.net.ua>. Don't | Jeremy Allison | 2006-01-27 | 1 | -1/+1 |
| | | | | | | access free'd memory. Jerry please pick up for 3.0.21b ! Jeremy. | ||||
* | r12051: Merge across the lookup_name and lookup_sid work. Lets see how the ↵ | Volker Lendecke | 2005-12-03 | 1 | -1/+1 |
| | | | | | | | | build farm reacts :-) Volker | ||||
* | r12043: It's amazing the warnings you find when compiling on a 64-bit | Jeremy Allison | 2005-12-03 | 1 | -11/+9 |
| | | | | | | | | | | | box with gcc4 and -O6... Fix a bunch of C99 dereferencing type-punned pointer will break strict-aliasing rules errors. Also added prs_int32 (not uint32...) as it's needed in one place. Find places where prs_uint32 was being used to marshall/unmarshall a time_t (a big no no on 64-bits). More warning fixes to come. Thanks to Volker for nudging me to compile like this. Jeremy. | ||||
* | r10792: Fix the "schannel not stored across client disconnects" problem. | Jeremy Allison | 2005-10-07 | 1 | -0/+209 |
| | | | | | | | Based on the Samba4 solution - stores data in $samba/private/schannel_store.tdb. This tdb is not left open but open and closed on demand. Jeremy. | ||||
* | r10658: It's so nice to have CVSIN to blame for this kind of bugs :-) | Volker Lendecke | 2005-09-30 | 1 | -1/+1 |
| | | | | Volker | ||||
* | r10656: BIG merge from trunk. Features not copied over | Gerald Carter | 2005-09-30 | 1 | -7/+59 |
| | | | | | | | * \PIPE\unixinfo * winbindd's {group,alias}membership new functions * winbindd's lookupsids() functionality * swat (trunk changes to be reverted as per discussion with Deryck) | ||||
* | r7139: trying to reduce the number of diffs between trunk and 3.0; changing ↵ | Gerald Carter | 2005-05-31 | 1 | -0/+65 |
| | | | | version to 3.0.20pre1 | ||||
* | r6595: This is Volkers new-talloc patch. Just got the go-ahead from | Jeremy Allison | 2005-05-03 | 1 | -1/+2 |
| | | | | | Volker to commit. Woo Hoo ! Jeremy. | ||||
* | r5767: Get rid of some compiler warnings | Volker Lendecke | 2005-03-12 | 1 | -14/+5 |
| | |||||
* | r4088: Get medieval on our ass about malloc.... :-). Take control of all our ↵ | Jeremy Allison | 2004-12-07 | 1 | -5/+5 |
| | | | | | | | | | allocation functions so we can funnel through some well known functions. Should help greatly with malloc checking. HEAD patch to follow. Jeremy. | ||||
* | r3948: Fix incorrect declaration. Bug #2083. | Jeremy Allison | 2004-11-25 | 1 | -1/+1 |
| | | | | Jeremy. | ||||
* | r1492: Rework our random number generation system. | Andrew Bartlett | 2004-07-14 | 1 | -31/+29 |
| | | | | | | | | | | On systems with /dev/urandom, this avoids a change to secrets.tdb for every fork(). For other systems, we now only re-seed after a fork, and on startup. No need to do it per-operation. This removes the 'need_reseed' parameter from generate_random_buffer(). Andrew Bartlett | ||||
* | r196: merging struct uuid from trunk | Gerald Carter | 2004-04-13 | 1 | -13/+13 |
| | |||||
* | r4: merge in the SAMBA_3_0 branch from cvs | CVS Import User | 2004-04-04 | 1 | -14/+27 |
| | | | | | | | | to checkout try this: svn co svn+ssh://svn.samba.org/home/svn/samba/branches/SAMBA_3_0 samba-3_0-work metze | ||||
* | r2: import HEAD into svn+ssh://svn.samba.org/home/svn/samba/trunk | CVS Import User | 2004-04-04 | 1 | -0/+824 |
metze |