Don't set the max_rev arbitrarily low.

This commit is contained in:
Chris Lee
2007-01-14 08:51:30 -08:00
committed by Chris Lee
parent 8d6ad3b02d
commit 5c4e1b3f8e

View File

@@ -157,7 +157,7 @@ int crawl_revisions(char *repos_path)
SVN_ERR(svn_fs_youngest_rev(&youngest_rev, fs, pool));
min_rev = 1;
max_rev = 100; // youngest_rev;
max_rev = youngest_rev;
subpool = svn_pool_create(pool);
for (rev = min_rev; rev <= max_rev; rev++) {