Fix config file regex
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 11 Oct 2010 08:38:48 +0000 (10:38 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 11 Oct 2010 08:38:48 +0000 (10:38 +0200)
src/config.cpp

index 77d86dc..dea7544 100644 (file)
@@ -626,7 +626,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" )
             {