summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Regex.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Regex.cc b/lib/Regex.cc
index a9b1983..9cc5c6c 100644
--- a/lib/Regex.cc
+++ b/lib/Regex.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Regex.cc,v 1.15 2007-05-30 11:57:10 pixel Exp $ */
+/* $Id: Regex.cc,v 1.16 2007-07-01 22:43:11 pixel Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -40,7 +40,7 @@ Regex::Regex(const String & regex, int acflags, int aeflags) throw (GeneralExcep
}
}
-Regex::Regex(const Regex & regex) : pattern(Base::strdup(regex.pattern)) {
+Regex::Regex(const Regex & regex) : pattern(Base::strdup(regex.pattern)), cflags(regex.cflags), eflags(regex.eflags) {
int r;
if ((r = regcomp(&preg, pattern, cflags | REG_NOSUB))) {