mirror of
https://github.com/frej/fast-export.git
synced 2026-01-18 12:12:04 +01:00
Don't set the max_rev arbitrarily low.
This commit is contained in:
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user