You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by eh...@apache.org on 2010/09/12 20:31:01 UTC

svn commit: r996359 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: ehu
Date: Sun Sep 12 18:31:00 2010
New Revision: 996359

URL: http://svn.apache.org/viewvc?rev=996359&view=rev
Log:
 * subversion/libsvn_wc/wc_db.c
  (svn_wc__db_temp_op_set_file_external): Match arguments of non-NODES query.

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

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=996359&r1=996358&r2=996359&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Sun Sep 12 18:31:00 2010
@@ -8807,12 +8807,14 @@ svn_wc__db_temp_op_set_file_external(svn
       SVN_ERR(svn_sqlite__get_statement(&stmt, pdh->wcroot->sdb,
                                         STMT_INSERT_NODE));
 
-      SVN_ERR(svn_sqlite__bindf(stmt, "isisnnntnt",
+      SVN_ERR(svn_sqlite__bindf(stmt, "isisisntnt",
                                 pdh->wcroot->wc_id,
                                 local_relpath,
                                 (apr_int64_t)0, /* op_depth == BASE */
                                 svn_relpath_dirname(local_relpath,
                                                     scratch_pool),
+                                repos_id,
+                                repos_relpath,
                                 presence_map, svn_wc__db_status_not_present,
                                 kind_map, svn_wc__db_kind_file));