summaryrefslogtreecommitdiff
path: root/subversion/svn/cat-cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/svn/cat-cmd.c')
-rw-r--r--subversion/svn/cat-cmd.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/subversion/svn/cat-cmd.c b/subversion/svn/cat-cmd.c
index 551420e..eef7696 100644
--- a/subversion/svn/cat-cmd.c
+++ b/subversion/svn/cat-cmd.c
@@ -76,15 +76,16 @@ svn_cl__cat(apr_getopt_t *os,
SVN_ERR(svn_opt_parse_path(&peg_revision, &truepath, target,
subpool));
- SVN_ERR(svn_cl__try(svn_client_cat2(out, truepath, &peg_revision,
+ SVN_ERR(svn_cl__try(svn_client_cat3(NULL, out, truepath, &peg_revision,
&(opt_state->start_revision),
- ctx, subpool),
+ !opt_state->ignore_keywords,
+ ctx, subpool, subpool),
errors, opt_state->quiet,
SVN_ERR_UNVERSIONED_RESOURCE,
SVN_ERR_ENTRY_NOT_FOUND,
SVN_ERR_CLIENT_IS_DIRECTORY,
SVN_ERR_FS_NOT_FOUND,
- SVN_NO_ERROR));
+ 0));
}
svn_pool_destroy(subpool);