- Timestamp:
- Jun 13, 2010, 5:23:43 AM (11 years ago)
- Location:
- trunk/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Configuration.cc
r1090 r1097 368 368 if (!regexp(str.begin(), str.end(), dic.first.begin(),dic.first.end(),vec)){ 369 369 std::stringstream mess; 370 mess << " svndigest:invalid config file: "370 mess << "invalid config file: " 371 371 << "expression " << dic.first << " is invalid"; 372 372 throw std::runtime_error(mess.str()); … … 380 380 if (n>vec.size() || n==0){ 381 381 std::stringstream mess; 382 mess << " svndigest:invalid config file: "382 mess << "invalid config file: " 383 383 << "expression " << dic.second << " is invalid"; 384 384 if (n) -
trunk/lib/File.cc
r1024 r1097 108 108 Alias a(*a_iter,alias.size()); 109 109 year_authors[rev_iter->first].insert(a); 110 std::cerr << "svn digest: warning: no copyright alias found for `"110 std::cerr << "svncopyright: warning: no copyright alias found for `" 111 111 << *a_iter << "'\n"; 112 112 // insert alias to avoid multiple warnings. … … 335 335 if (!detect_copyright(old_block, start_line, end_line, prefix)){ 336 336 if (Configuration::instance().missing_copyright_warning()) 337 std::cerr << "svn digest: warning: no copyright statement found in `"337 std::cerr << "svncopyright: warning: no copyright statement found in `" 338 338 << path_ << "'\n"; 339 339 return; … … 450 450 catch (std::runtime_error e) { 451 451 // catch exception, cleanup, and rethrow 452 std::cerr << "svn digest: File::print_copyright: Exception caught, "452 std::cerr << "svncopyright: File::print_copyright: Exception caught, " 453 453 << "removing temporary file " << tmpname << std::endl; 454 454 if (unlink(tmpname)) -
trunk/lib/utility.cc
r1090 r1097 163 163 if (res!=FNM_NOMATCH) { 164 164 std::stringstream ss; 165 ss << " svndigest:fnmatch with args: " << pattern << ", " << str;165 ss << "fnmatch with args: " << pattern << ", " << str; 166 166 throw std::runtime_error(ss.str()); 167 167 }
Note: See TracChangeset
for help on using the changeset viewer.