From 0c77009c4cf1b99aeab732f31d8b69073692269a Mon Sep 17 00:00:00 2001
From: Gurvinder Singh <gurvindersinghdahiya@gmail.com>
Date: Sat, 1 May 2010 14:28:50 +0200
Subject: [PATCH] fixed the regex in bug 136

---
 src/detect-pcre.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/detect-pcre.c b/src/detect-pcre.c
index 7b5e76b..8720218 100644
--- a/src/detect-pcre.c
+++ b/src/detect-pcre.c
@@ -820,7 +820,7 @@ static int DetectPcreTestSig01Real(int mpm_type) {
     de_ctx->mpm_matcher = mpm_type;
     de_ctx->flags |= DE_QUIET;
 
-    de_ctx->sig_list = SigInit(de_ctx,"alert tcp any any -> any any (msg:\"HTTP TEST\"; pcre:\"^/gEt/i\"; pcre:\"/\\/two\\//U; pcre:\"/GET \\/two\\//\"; pcre:\"/\\s+HTTP/R\"; sid:1;)");
+    de_ctx->sig_list = SigInit(de_ctx,"alert tcp any any -> any any (msg:\"HTTP TEST\"; pcre:\"/^gEt/i\"; pcre:\"/\\/two\\//U; pcre:\"/GET \\/two\\//\"; pcre:\"/\\s+HTTP/R\"; sid:1;)");
     if (de_ctx->sig_list == NULL) {
         result = 0;
         goto end;
-- 
1.6.0.4

