# # patch "cvs_sync.cc" # from [ba1928d7e0f1fe4252fddf4aa43d99cf77ac0700] # to [1e73deee538c8455218a450ba697abbbdbaebc4b] # ======================================================================== --- cvs_sync.cc ba1928d7e0f1fe4252fddf4aa43d99cf77ac0700 +++ cvs_sync.cc 1e73deee538c8455218a450ba697abbbdbaebc4b @@ -170,8 +170,10 @@ std::string debug_manifest(const cvs_manifest &mf) { std::string result; for (cvs_manifest::const_iterator i=mf.begin(); i!=mf.end(); ++i) - { result+= i->first + " " + i->second->cvs_version + " " - + (i->second->dead?"dead ":"") + i->second->sha1sum() + "\n"; + { result+= i->first + " " + i->second->cvs_version; + if (!i->second->keyword_substitution.empty()) + result+="/"+i->second->keyword_substitution; + result+=" " + std::string(i->second->dead?"dead ":"") + i->second->sha1sum() + "\n"; } return result; }