aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--re.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1772c68d..81a09731 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jun 1 06:29:27 2011 Pat Rankin <rankin@pactechdata.com>
+
+ * re.c (check_bracket_exp): Fix typo.
+
Tue May 31 23:01:00 2011 John Haque <j.eh@mchsi.com>
* re.c (check_bracket_exp): Use mem* routines instead of str*
diff --git a/re.c b/re.c
index a617831a..3dce1d52 100644
--- a/re.c
+++ b/re.c
@@ -602,7 +602,7 @@ again:
classes[i].warned = TRUE;
}
- if (*sp < end) {
+ if (sp < end) {
found = FALSE;
goto again;
}