Legend:
- Unmodified
- Added
- Removed
-
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.