summaryrefslogtreecommitdiffstats
path: root/source/smbd/mangle_hash.c
Commit message (Collapse)AuthorAgeFilesLines
* small merges from SAMBA_3_0; mostly typos, renames, etc...Gerald Carter2003-01-151-1/+1
|
* Becouse these functions return a size_t, they can't return negitive numbers.Andrew Bartlett2003-01-021-1/+1
| | | | | | | So a < 0 check is pointless, instead check against -1, which will be cast to unsigned. Andrew Bartlett
* BIG patch...Andrew Bartlett2003-01-021-4/+4
| | | | | | | | | | | | | | | | This patch makes Samba compile cleanly with -Wwrite-strings. - That is, all string literals are marked as 'const'. These strings are always read only, this just marks them as such for passing to other functions. What is most supprising is that I didn't need to change more than a few lines of code (all in 'net', which got a small cleanup of net.h and extern variables). The rest is just adding a lot of 'const'. As far as I can tell, I have not added any new warnings - apart from making all of tdbutil.c's function const (so they warn for adding that const string to struct). Andrew Bartlett
* Updates!Andrew Bartlett2002-08-261-1/+1
| | | | | | | | | | | - Don't print an uninitialised buffer in service.c - Change some charcnv.c functions to take smb_ucs2_t ** instead of void ** - Update NTLMv2 code to use dynamic buffers - Update experimental SMB signing code - still more work to do - Move sys_getgrouplist() to SAFE_FREE() and do a DEBUG() on initgroups() failure. Andrew Bartlett
* Merge in mangle fixes from 2.2.Jeremy Allison2002-06-131-262/+253
| | | | Jeremy.
* Removed lp_strip_dot code - ensured that mangling code treats names endingJeremy Allison2002-05-141-1/+15
| | | | | | in '.' as invalid long filenames (special treatment for '.' and '..' which are valid - yes Andrew I did this without strlen :-) :-). Jeremy.
* Fix build farm bug.Jeremy Allison2002-04-291-1/+1
| | | | Jeremy.
* Added 2.2.x mangle fix to old mangle code in HEAD.Jeremy Allison2002-04-291-2/+1
| | | | Jeremy.
* This split the mangling code up to allow for the possibility of multipleAndrew Tridgell2002-04-111-0/+775
mangling implementation, selectable using "mangling method = " in smb.conf It also tidies the interface a little, although it is still nasty.