~ubuntu-branches/debian/stretch/subversion/stretch

« back to all changes in this revision

Viewing changes to subversion/bindings/javahl/native/JNIUtil.cpp

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2013-10-18 23:23:06 UTC
  • mfrom: (17.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20131018232306-etbd7h4i0stghrd5
Tags: 1.7.13-2
Remove unnecessary libapache2-svn.prem.  (Closes: #726717)

Show diffs side-by-side

added added

removed removed

Lines of Context:
376
376
    return;
377
377
 
378
378
  char *tmp_path;
379
 
  char *path = svn_relpath_dirname(err->file, err->pool);
 
379
  char *path = svn_dirent_dirname(err->file, err->pool);
380
380
  while (tmp_path = strchr(path, '/'))
381
381
    *tmp_path = '.';
382
382
 
384
384
  if (isJavaExceptionThrown())
385
385
    return;
386
386
 
387
 
  jstring jfileName = makeJString(svn_relpath_basename(err->file, err->pool));
 
387
  jstring jfileName = makeJString(svn_dirent_basename(err->file, err->pool));
388
388
  if (isJavaExceptionThrown())
389
389
    return;
390
390