Without the change, running it does nothing at all here.
Signed-off-by: Rocco Rutte <pdmef@gmx.net>
#include <svn_types.h>
#include <svn_pools.h>
+#include <svn_repos.h>
#include <svn_fs.h>
#undef SVN_ERR
apr_hash_t *props;
apr_hash_index_t *i;
+ svn_repos_t *repos;
svn_fs_t *fs;
svn_string_t *svndate;
svn_revnum_t youngest_rev, export_rev;
svn_fs_root_t *fs_root;
SVN_ERR(svn_fs_initialize(pool));
- SVN_ERR(svn_fs_open(&fs, repos_path, NULL, pool));
+ SVN_ERR(svn_repos_open(&repos, repos_path, pool));
+ if ((fs = svn_repos_fs(repos)) == NULL)
+ return -1;
SVN_ERR(svn_fs_youngest_rev(&youngest_rev, fs, pool));
export_rev = youngest_rev;