Changeset 1366 for branches/0.9-stable


Ignore:
Timestamp:
Jun 10, 2011, 4:13:25 AM (12 years ago)
Author:
Peter Johansson
Message:

fixes #501. Fixed typo in Configuration class. Now section [svn-props]
will be respected (not [svn_props]), which is in line with documented
behavior and how the generated config file looks like from
--generate-config option.

Location:
branches/0.9-stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/0.9-stable/lib/Configuration.cc

    r1344 r1366  
    334334        }
    335335      }
    336       else if (section == "svn_props") {
     336      else if (section == "svn-props") {
    337337        svn_props_.push_back(std::make_pair(lhs, empty_str_map_));
    338338        std::vector<std::string> vec;
  • branches/0.9-stable/test/Makefile.am

    r1365 r1366  
    5656
    5757# tests not yet passing are listed here
    58 XFAIL_TESTS = config_props_test.sh
     58XFAIL_TESTS =
    5959
    6060noinst_HEADERS = Suite.h
  • branches/0.9-stable/test/config.cc

    r1237 r1366  
    7474    Configuration& conf(Configuration::instance());
    7575    std::stringstream ss;
    76     ss << "[svn_props]\n"
     76    ss << "[svn-props]\n"
    7777       << "foo* = svndigest:ignore\n"
    7878       << "bar* = svn:eol-style=native;svncopyright:ignore\n";
Note: See TracChangeset for help on using the changeset viewer.