Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Fix compiler warning. | Tim Potter | 2003-03-19 | 2 | -3/+8 | |
| | | ||||||
| * | Removed unused variable. | Tim Potter | 2003-03-19 | 1 | -2/+0 | |
| | | ||||||
| * | Add function prototype. | Tim Potter | 2003-03-19 | 1 | -0/+4 | |
| | | ||||||
| * | Remove py_samba.c experiment - it didn't work. | Tim Potter | 2003-03-19 | 2 | -68/+1 | |
| | | ||||||
| * | Put group mapping into LDAP. | Volker Lendecke | 2003-03-19 | 1 | -1/+501 | |
| | | | | | | | | Volker | |||||
| * | Fix debug message not to use an uninitialized variable. | Volker Lendecke | 2003-03-19 | 1 | -2/+1 | |
| | | | | | | | | Volker | |||||
| * | Add additional StrCaseCmp test cases. | Martin Pool | 2003-03-19 | 1 | -2/+14 | |
| | | | | | | | | Doc. | |||||
| * | Add an STF module that defines the tests to be run by "make check". | Martin Pool | 2003-03-19 | 1 | -0/+33 | |
| | | ||||||
| * | Get rid of "make check" targets that call nonexistent code. | Martin Pool | 2003-03-19 | 1 | -30/+15 | |
| | | | | | | | | | | | | | | | | | | Add in new ones that run STF, after setting up a PATH and LD_LIBRARY_PATH that will let them find samba in the build directory. LD_LIBRARY_PATH is probably not portable but without libtool I don't know a portable way to do it. Perhaps the simple solution is just to link these things statically? | |||||
| * | A new STF test case! This one checks strcasecmp correctness for | Martin Pool | 2003-03-19 | 1 | -0/+57 | |
| | | | | | | | | various strings. | |||||
| * | Add the correct file :-( to ignore .po and .po32 files. | Martin Pool | 2003-03-19 | 1 | -0/+2 | |
| | | ||||||
| * | Remove this .po file from the repository. I meant to add a cvsignore | Martin Pool | 2003-03-19 | 1 | -0/+0 | |
| | | | | | | | | file that ignored it, but I slipped. | |||||
| * | Ignore t_strcmp test case. | Martin Pool | 2003-03-19 | 1 | -0/+1 | |
| | | ||||||
| * | Ignore .po and .po32 files. | Martin Pool | 2003-03-19 | 1 | -0/+0 | |
| | | ||||||
| * | Run test 10000 times to make measurement easier. | Martin Pool | 2003-03-19 | 1 | -2/+7 | |
| | | ||||||
| * | Ensure dev in make_connection is const. | Jeremy Allison | 2003-03-18 | 2 | -4/+10 | |
| | | | | | | | | Jeremy. | |||||
| * | Removed unused var. | Jeremy Allison | 2003-03-18 | 1 | -2/+0 | |
| | | | | | | | | Jeremy. | |||||
| * | Put in some macros for the new modules system | Jelmer Vernooij | 2003-03-18 | 1 | -0/+25 | |
| | | ||||||
| * | Step one of optimizations for StrCaseCmp: | Martin Pool | 2003-03-18 | 1 | -7/+72 | |
| | | | | | | | | | | | | | | | | First of all, do a char-by-char walk through both buffers until we get to a non-ascii character, or a difference between the strings. This prefix can be directly compared without needing to call into iconv. This should be much faster for strings that are either all ascii, or differ near the start. | |||||
| * | Add t_strcmp test/torture harness. | Martin Pool | 2003-03-18 | 1 | -1/+4 | |
| | | ||||||
* | | Merge from HEAD. | Volker Lendecke | 2003-03-19 | 2 | -59/+101 | |
| | | | | | | | | Volker | |||||
* | | Fix some comment typos | Jelmer Vernooij | 2003-03-19 | 1 | -2/+2 | |
| | | ||||||
* | | merge from HEAD | Volker Lendecke | 2003-03-19 | 1 | -0/+1 | |
| | | ||||||
* | | Put group mapping into LDAP. | Volker Lendecke | 2003-03-19 | 1 | -30/+471 | |
| | | | | | | | | Volker | |||||
* | | Fix debug message not to use an uninitialized variable. | Volker Lendecke | 2003-03-19 | 1 | -2/+1 | |
| | | | | | | | | Volker | |||||
* | | Doin't pstrcpy into fstring. | Jeremy Allison | 2003-03-19 | 1 | -4/+4 | |
| | | | | | | | | Jeremy. | |||||
* | | Ensure dev in make_connection is const. | Jeremy Allison | 2003-03-18 | 2 | -5/+11 | |
| | | | | | | | | Jeremy. | |||||
* | | Removed unused var. | Jeremy Allison | 2003-03-18 | 1 | -2/+0 | |
| | | | | | | | | Jeremy. | |||||
* | | const warning fix. | Jeremy Allison | 2003-03-18 | 1 | -1/+2 | |
| | | | | | | | | Jeremy. | |||||
* | | Merge mbp's HEAD changes. | Jeremy Allison | 2003-03-18 | 2 | -34/+72 | |
| | | | | | | | | Jeremy. | |||||
* | | Add const. | Andrew Bartlett | 2003-03-18 | 1 | -2/+2 | |
| | | ||||||
* | | Makefile updates for new SMB signing code. | Andrew Bartlett | 2003-03-18 | 1 | -2/+2 | |
| | | ||||||
* | | Parinoia fixes from HEAD - malloc() some extra room after the allocated | Andrew Bartlett | 2003-03-18 | 1 | -2/+2 | |
| | | | | | | | | buffer size. | |||||
* | | Merge from HEAD: | Andrew Bartlett | 2003-03-18 | 5 | -160/+77 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | A much better SMB signing module, that allows for mulitple signing algorithms and correctly backs down from signing when the server cannot sign the reply. This also attempts to enable SMB signing on NTLMSSP connections, but I don't know what NTLMSSP flags to set yet. This would allow 'client use signing' to be set by default, for server compatability. (A seperate option value should be provided for mandetory signing, which would not back down). Andrew Bartlett | |||||
* | | NMBD string parinoia and memcpy() parinoia fixes from HEAD. | Andrew Bartlett | 2003-03-18 | 3 | -10/+15 | |
| | | | | | | | | Andrew Bartlett | |||||
* | | NTLMSSP updates from HEAD. | Andrew Bartlett | 2003-03-18 | 2 | -12/+30 | |
| | | | | | | | | Andrew Bartlett | |||||
* | | Jeremy merged across my string parinoia fixes, but forgot to enable them! :-) | Andrew Bartlett | 2003-03-18 | 17 | -108/+91 | |
| | | | | | | | | | | | | | | | | | | | | This patch catches up on the rest of the work - as much string checking as is possible is done at compile time, and the rest at runtime. Lots of code converted to pstrcpy() etc, and other code reworked to correctly call sizeof(). Andrew Bartlett | |||||
* | | Merge signed/unsigned fix from HEAD. | Andrew Bartlett | 2003-03-18 | 1 | -1/+1 | |
| | | ||||||
* | | One more on set_local_machine_name() taking a new 'perm' argument. | Andrew Bartlett | 2003-03-18 | 1 | -1/+1 | |
| | | ||||||
* | | Fix segfault on FD_SET() when we have an fd of -1 | Andrew Bartlett | 2003-03-18 | 1 | -0/+3 | |
| | | | | | | | | Andrew Bartlett | |||||
* | | Merge whitespace to match HEAD. | Andrew Bartlett | 2003-03-18 | 1 | -17/+17 | |
| | | ||||||
* | | Add an extra parameter to our 'set_remote_machine_name' and | Andrew Bartlett | 2003-03-18 | 7 | -10/+37 | |
| | | | | | | | | | | | | | | | | | | 'set_local_machine_name' so that the client can't change it from under us. (.NET RC2 and WinXP install calls the machine 'machinename' during NTLMSSP on the domain join). Andrew Bartlett | |||||
* | | Add const. | Andrew Bartlett | 2003-03-18 | 1 | -1/+1 | |
| | | ||||||
* | | This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'. | cvs2svn Import User | 2003-03-18 | 15 | -0/+2058 | |
|\| | ||||||
| * | Split "clobber" function and variables into its own file before it | Martin Pool | 2003-03-18 | 3 | -40/+61 | |
| | | | | | | | | grows too much larger. | |||||
| * | Ignore t_stringoverflow binary. | Martin Pool | 2003-03-18 | 1 | -1/+2 | |
| | | ||||||
| * | Ignore .po and .po32 files. | Martin Pool | 2003-03-18 | 1 | -0/+3 | |
| | | ||||||
| * | Comment about deprecated macro overmalloc_safe_strcpy(). | Martin Pool | 2003-03-18 | 1 | -0/+6 | |
| | | ||||||
| * | Remove static libbigballofmud, which just does not seem to link. | Martin Pool | 2003-03-18 | 1 | -3/+7 | |
| | | | | | | | | Add bin/t_stringoverflow test case. Not built by default. | |||||
| * | The new string macros catch a bug at compile that previously only | Martin Pool | 2003-03-18 | 1 | -0/+7 | |
| | | | | | | | | | | | | trapped at runtime, which is great. So we have to try a little harder to provoke an overflow -- which is still caught nicely in developer mode. |