Changeset 190
- Timestamp:
- Nov 7, 2008, 8:17:10 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r188 r190 1 2.5.0: 1 2.5.1: 2 * constness patch by Joe MacDonald 3 4 2.5.0 (01-11-2008): 2 5 * dnmalloc.c: fix inconsistent chunksize on 64bit systems 3 6 * fix improved error reporting for failed fstat in checksumming -
trunk/include/slib.h
r183 r190 200 200 * strstr 201 201 */ 202 c har * sl_strstr (const char * haystack, const char * needle);202 const char * sl_strstr (const char * haystack, const char * needle); 203 203 204 204 /* -
trunk/src/sh_mail.c
r171 r190 693 693 /* fast forward to the important part 694 694 */ 695 mptr = sl_strstr(message, _("msg="));695 mptr = (char*)sl_strstr(message, _("msg=")); 696 696 if (mptr) 697 697 { … … 702 702 rep_serv_tab[2].data_str = message; 703 703 704 mptr = sl_strstr(message, _("sev="));704 mptr = (char*)sl_strstr(message, _("sev=")); 705 705 if (mptr) 706 706 { -
trunk/src/slib.c
r183 r190 1083 1083 */ 1084 1084 1085 c har * sl_strstr (const char * haystack, const char * needle)1085 const char * sl_strstr (const char * haystack, const char * needle) 1086 1086 { 1087 1087 #ifndef HAVE_STRSTR 1088 in ti;1088 insigned int i; 1089 1089 size_t needle_len; 1090 1090 size_t haystack_len;
Note:
See TracChangeset
for help on using the changeset viewer.