Revision: 76509
          http://sourceforge.net/p/brlcad/code/76509
Author:   starseeker
Date:     2020-07-26 18:10:05 +0000 (Sun, 26 Jul 2020)
Log Message:
-----------
Don't assume svn error - we may not be testing for it

Modified Paths:
--------------
    brlcad/trunk/misc/repoconv/verify/verify.cpp

Modified: brlcad/trunk/misc/repoconv/verify/verify.cpp
===================================================================
--- brlcad/trunk/misc/repoconv/verify/verify.cpp        2020-07-26 18:07:27 UTC 
(rev 76508)
+++ brlcad/trunk/misc/repoconv/verify/verify.cpp        2020-07-26 18:10:05 UTC 
(rev 76509)
@@ -340,7 +340,7 @@
     std::set<std::pair<long, size_t>>::reverse_iterator r_it;
     for(r_it = timestamp_to_cmp.rbegin(); r_it != timestamp_to_cmp.rend(); 
r_it++) {
        int cvs_err = 0;
-       int svn_err = 1;
+       int svn_err = 0;
        cmp_info &info = cmp_infos[r_it->second];
 
        if (info.rev.length()) {
@@ -365,7 +365,7 @@
 
        // If we have a revision, check the SVN repository
        if (info.rev.length()) {
-       svn_err = verify_repos_svn(info, git_repo, svn_repo);
+           svn_err = verify_repos_svn(info, git_repo, svn_repo);
        }
 
        // If we saw any errors, report the commands that prompted them:

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to