| Commit message (Expand) | Author | Age | Files | Lines |
* | Added "const" to appropriate char pointers. | Wayne Davison | 2006-11-19 | 2 | -5/+4 |
* | - Fixed a compile problem ("len" not defined) in inet_ntop4(). | Wayne Davison | 2006-10-16 | 1 | -6/+8 |
* | Changed strcpy() calls into memcpy() calls. | Wayne Davison | 2006-10-13 | 2 | -7/+7 |
* | Changed strcpy() calls into strlcpy() calls, just to be extra safe. | Wayne Davison | 2006-10-13 | 2 | -2/+2 |
* | Updated the FSF's address to an even newer one. | Wayne Davison | 2006-04-25 | 4 | -12/+12 |
* | - Updated the address for the FSF in the opening comment. | Wayne Davison | 2006-04-25 | 4 | -113/+108 |
* | Got rid of the replacement inet_aton() and inet_ntoa() functions | Wayne Davison | 2006-04-13 | 1 | -43/+0 |
* | Changed the mode arg from an int to a mode_t. | Wayne Davison | 2006-01-30 | 2 | -3/+2 |
* | Added a new function, wildmatch_array(), that lets the caller pass | Wayne Davison | 2006-01-02 | 1 | -10/+147 |
* | The latest prototypes. | Wayne Davison | 2006-01-02 | 1 | -0/+2 |
* | - Added a new public function, iwildmatch(), which will treat all | Wayne Davison | 2005-12-30 | 1 | -50/+68 |
* | Added a prototype for iwildmatch(). | Wayne Davison | 2005-12-30 | 1 | -0/+1 |
* | Added a comment, improved a comment, tweaked the recursive function's | Wayne Davison | 2005-12-18 | 1 | -39/+23 |
* | Tweaked the name of the first arg to wildmatch(). | Wayne Davison | 2005-12-18 | 1 | -1/+1 |
* | Twiddled some brace positions and removed a superfluous ';' in a macro. | Wayne Davison | 2005-11-14 | 1 | -43/+19 |
* | If va_copy is defined, use it when defining VA_COPY. | Wayne Davison | 2005-10-11 | 1 | -1/+1 |
* | Check SIZEOF_LONG_LONG instead of HAVE_LONG_LONG. | Wayne Davison | 2005-02-21 | 1 | -1/+1 |
* | - Integrated the latest version from samba. | Wayne Davison | 2005-02-20 | 1 | -64/+143 |
* | John E. Malmberg convinced me to standardize on #ifs for defined | Wayne Davison | 2005-02-14 | 1 | -2/+2 |
* | - Use "uchar" instead of "unsigned char". | Wayne Davison | 2005-01-28 | 1 | -5/+5 |
* | Use int64 instead of uint64. | Wayne Davison | 2005-01-20 | 1 | -5/+5 |
* | Fixed the file_checksum1() function that is compiled only when | Wayne Davison | 2005-01-10 | 1 | -2/+8 |
* | Got rid of a bunch of cruft. | Wayne Davison | 2004-04-22 | 1 | -47/+0 |
* | Missed one void-pointer-arithmetic case. | Wayne Davison | 2004-04-09 | 1 | -1/+1 |
* | AIX's cc was complaining about the void* arithmetic. | Wayne Davison | 2004-04-09 | 1 | -6/+10 |
* | Shouldn't ignore .cvsignore. | Wayne Davison | 2004-02-23 | 1 | -1/+0 |
* | Another attempt at measuring the minimum alignment for a system. | Wayne Davison | 2004-02-10 | 1 | -1/+6 |
* | Trying a different MINALIGN because of core dumps on the sparc-64 | Wayne Davison | 2004-02-10 | 1 | -1/+1 |
* | Revert pool_alloc's use of bomb if pool == NULL. | J.W. Schultz | 2004-02-10 | 1 | -6/+1 |
* | If we call pool_alloc() on a NULL pool, bomb out with an error. | Wayne Davison | 2004-02-10 | 1 | -1/+6 |
* | Changed a while loop to a for loop. | Wayne Davison | 2004-02-10 | 1 | -5/+3 |
* | Added allocation pool code. | J.W. Schultz | 2004-02-10 | 3 | -0/+516 |
* | Make sure that strlcpy() returns the right value when the bufsize is 0. | Wayne Davison | 2004-01-20 | 1 | -4/+6 |
* | Fixed a bug in strlcat() where it would not properly detect a no-change | Wayne Davison | 2004-01-20 | 1 | -4/+3 |
* | Changed "remote_version" to "protocol_version". | Wayne Davison | 2003-09-09 | 1 | -3/+3 |
* | No longer needed (replaced by wildmatch). | Wayne Davison | 2003-07-30 | 2 | -570/+0 |
* | Make sure that no character class can match a '/'. | Wayne Davison | 2003-07-14 | 1 | -1/+1 |
* | Silence some compiler warnings on HP-UX. | Wayne Davison | 2003-07-07 | 1 | -3/+3 |
* | Don't treat "[:" as the start of a named set if there's no ":]". | Wayne Davison | 2003-07-07 | 1 | -3/+10 |
* | - Return ABORT_ALL for a syntax error in the pattern (not FALSE). | Wayne Davison | 2003-07-06 | 1 | -19/+57 |
* | Added some portability code for the ctype functions. | Wayne Davison | 2003-07-06 | 1 | -12/+41 |
* | - Added [:class:] handling to the character-class code. | Wayne Davison | 2003-07-06 | 1 | -7/+52 |
* | Simplified the character-class code a bit. | Wayne Davison | 2003-07-05 | 1 | -12/+7 |
* | Changed some names since "depth" wasn't really the right term. | Wayne Davison | 2003-07-05 | 1 | -6/+6 |
* | Improved the ABORT logic to allow aborting consecutive "*" wildcards | Wayne Davison | 2003-07-05 | 1 | -6/+20 |
* | Added in the ABORT optimization logic from a newer wildmat release, | Wayne Davison | 2003-07-05 | 1 | -23/+28 |
* | A couple comment tweaks. | Wayne Davison | 2003-07-05 | 1 | -3/+3 |
* | A new wildcard-matching routine to replace the fnmatch code. | Wayne Davison | 2003-07-05 | 2 | -0/+99 |
* | Attempting to fix the snprintf() conflict on a gcc-using HPUX 11.11. | Wayne Davison | 2003-07-04 | 1 | -1/+3 |
* | - for protocol version >= 27, mdfour_tail() is called when the block size | J.W. Schultz | 2003-04-10 | 2 | -14/+42 |