Fix escape sequence in config file regex
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 3 Aug 2009 09:19:27 +0000 (11:19 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 3 Aug 2009 09:19:27 +0000 (11:19 +0200)
src/config.cpp

index a155dbe..35975ad 100644 (file)
@@ -294,7 +294,7 @@ int Config::load_config_from_files()
         if( fs::is_regular_file( dir_itr->status() ) )
         {
             string actual_file = dir_itr->path().filename();
-            boost::regex expr(".*\.conf?");
+            boost::regex expr(".*\\.conf?");
              // If it is the main config file do the following
             if ( actual_file == "bpdyndnsd.conf" )
             {