1234567891011 |
- --- snort-2.8.5.2.orig/src/detection-plugins/sp_replace.c 2009-07-07 17:37:04.000000000 +0200
- +++ snort-2.8.5.2/src/detection-plugins/sp_replace.c 2010-01-19 20:21:14.000000000 +0100
- @@ -122,7 +122,7 @@ static PatternMatchData * Replace_Parse(
- }
-
- /* find the start of the data */
- - start_ptr = index(rule, '"');
- + start_ptr = strchr(rule, '"');
-
- if(start_ptr == NULL)
- {
|