Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | strequal() returns True for equal, not an int | Andrew Tridgell | 2003-04-06 | 1 | -2/+4 |
| | |||||
* | - Support absolute paths in vfs and charset modules | Jelmer Vernooij | 2003-03-31 | 1 | -3/+6 |
| | | | | | | | - Fix typo in Makefile.in - Fix compatibility with older vfs modules (from patch by metze) - Build some modules shared by default and some static (and fall back to static when dlopen() is not available) | ||||
* | Add modules support to charset | Jelmer Vernooij | 2003-03-24 | 1 | -29/+55 |
| | |||||
* | Doxygen janitor | Martin Pool | 2003-02-28 | 1 | -1/+1 |
| | |||||
* | Add a comment about the meaning of samba's internal character set and | Martin Pool | 2003-02-28 | 1 | -0/+24 |
| | | | | how this interacts with it. | ||||
* | Doxygen janitor | Martin Pool | 2003-02-27 | 1 | -5/+6 |
| | |||||
* | BIG patch... | Andrew Bartlett | 2003-01-02 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | | 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 | ||||
* | Move 'weird' character set into new 'developer' module | Jelmer Vernooij | 2002-11-13 | 1 | -108/+0 |
| | |||||
* | Don't throw out WEIRD - yet (I committed my local changes together with my ↵ | Jelmer Vernooij | 2002-11-12 | 1 | -0/+108 |
| | | | | last fix. D'oh!) | ||||
* | Fix segfault with high debug levels | Jelmer Vernooij | 2002-11-12 | 1 | -109/+1 |
| | |||||
* | Add smb_register_charset() and use it | Jelmer Vernooij | 2002-11-12 | 1 | -33/+65 |
| | |||||
* | Removed version number from file header. | Tim Potter | 2002-01-30 | 1 | -2/+1 |
| | | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header. | ||||
* | much better auto-init of valid_table[]. This should just about remove | Andrew Tridgell | 2001-12-20 | 1 | -1/+7 |
| | | | | the need for valid.dat | ||||
* | get rid of compiler warnings (casts and delete unused variables) | Herb Lewis | 2001-10-23 | 1 | -2/+2 |
| | |||||
* | Add a few const statements to various odd bits of the tree. (Fixes some | Andrew Bartlett | 2001-09-29 | 1 | -1/+1 |
| | | | | warnings) | ||||
* | allow all ucs2 chars in utf8, rather than mapping some to a single | Andrew Tridgell | 2001-09-25 | 1 | -10/+1 |
| | | | | char like libiconv does | ||||
* | move to SAFE_FREE() | Simo Sorce | 2001-09-17 | 1 | -2/+2 |
| | |||||
* | added "display charset" option in smb.conf, along with d_printf() | Andrew Tridgell | 2001-09-07 | 1 | -2/+2 |
| | | | | | | | | | which should now be used instead of DEBUG(0) or printf() for interactive messages I have only converted client.c to use d_printf(), and the code hasn't had much testing yet. Eventually we want all interactive code to use d_printf(), plus SWAT | ||||
* | changed the iconv interface to go via ucs2 for all conversions. This | Andrew Tridgell | 2001-07-22 | 1 | -71/+186 |
| | | | | | | fixes some problems wih some character sets and allows for using internal charsets in conjunction with ionv charsets this makes us slower but more correct. speed will come later. | ||||
* | switch from UCS2 to UCS-2LE | Andrew Tridgell | 2001-07-22 | 1 | -15/+1 |
| | |||||
* | fixed a silly bug in the internal UTF8 implementation | Andrew Tridgell | 2001-07-06 | 1 | -1/+14 |
| | |||||
* | added some comments and removed an unnecessary check | Andrew Tridgell | 2001-07-06 | 1 | -3/+2 |
| | |||||
* | optimised the 7 bit case for utf8 conversion | Andrew Tridgell | 2001-07-05 | 1 | -4/+4 |
| | |||||
* | make sure we reset the shift state on error for charsets like SJIS | Andrew Tridgell | 2001-07-05 | 1 | -1/+10 |
| | |||||
* | added builtin support for UTF8 | Andrew Tridgell | 2001-07-04 | 1 | -1/+115 |
| | |||||
* | more portability fixes | Andrew Tridgell | 2001-07-04 | 1 | -4/+2 |
| | |||||
* | portability fixes | Andrew Tridgell | 2001-07-04 | 1 | -4/+9 |
| | |||||
* | got rid of __FUNCTION__ debug | Andrew Tridgell | 2001-07-04 | 1 | -2/+2 |
| | |||||
* | The big character set handling changeover! | Andrew Tridgell | 2001-07-04 | 1 | -0/+346 |
This commit gets rid of all our old codepage handling and replaces it with iconv. All internal strings in Samba are now in "unix" charset, which may be multi-byte. See internals.doc and my posting to samba-technical for a more complete explanation. |