You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2012/06/04 01:10:52 UTC

svn commit: r1345800 - /subversion/trunk/subversion/libsvn_client/export.c

Author: rhuijben
Date: Sun Jun  3 23:10:52 2012
New Revision: 1345800

URL: http://svn.apache.org/viewvc?rev=1345800&view=rev
Log:
* subversion/libsvn_client/export.c
  (export_node): Following up on r1345799, try to fix the !Windows build.

Modified:
    subversion/trunk/subversion/libsvn_client/export.c

Modified: subversion/trunk/subversion/libsvn_client/export.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/export.c?rev=1345800&r1=1345799&r2=1345800&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/export.c (original)
+++ subversion/trunk/subversion/libsvn_client/export.c Sun Jun  3 23:10:52 2012
@@ -217,7 +217,7 @@ export_node(void *baton,
          Retrieving the file permissions with APR_FINFO_PROT | APR_FINFO_OWNER
          is documented to be 'incredibly expensive' */
 #ifndef WIN32
-      if (revision->kind == svn_opt_revision_working)
+      if (eib->revision->kind == svn_opt_revision_working)
         {
           apr_finfo_t finfo;
           SVN_ERR(svn_io_stat(&finfo, from_abspath, APR_FINFO_PROT, pool));