From ba3091429f1d6ac37203fd32383abf95d5bfa7f1 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Mon, 3 Aug 2009 11:19:27 +0200 Subject: [PATCH] Fix escape sequence in config file regex --- src/config.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/config.cpp b/src/config.cpp index a155dbe..35975ad 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -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" ) { -- 1.7.1