Author: rhuijben
Date: Thu May 19 22:28:11 2011
New Revision: 1125143

URL: http://svn.apache.org/viewvc?rev=1125143&view=rev
Log:
* subversion/libsvn_wc/upgrade.c
  (upgrade_to_wcng): Following up on r1125138, fix variable reference to
    unbreak compilation.

Modified:
    subversion/trunk/subversion/libsvn_wc/upgrade.c

Modified: subversion/trunk/subversion/libsvn_wc/upgrade.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/upgrade.c?rev=1125143&r1=1125142&r2=1125143&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/upgrade.c (original)
+++ subversion/trunk/subversion/libsvn_wc/upgrade.c Thu May 19 22:28:11 2011
@@ -1270,7 +1270,8 @@ upgrade_to_wcng(void **dir_baton,
   /* Don't try to mess with the WC if there are old log files left. */
 
   /* Is the (first) log file present?  */
-  SVN_ERR(svn_io_check_path(logfile_path, &logfile_on_disk, scratch_pool));
+  SVN_ERR(svn_io_check_path(logfile_path, &logfile_on_disk_kind,
+                            scratch_pool));
   if (logfile_on_disk_kind == svn_node_file)
     return svn_error_create(SVN_ERR_WC_UNSUPPORTED_FORMAT, NULL,
                             _("Cannot upgrade with existing logs; run a "


Reply via email to