Skip to content

Commit

Permalink
bvfs.c: fix merge typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz committed Apr 21, 2017
1 parent 1eb9eb9 commit 833d2e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cats/bvfs.c
Expand Up @@ -220,7 +220,7 @@ bool B_DB::update_path_hierarchy_cache(JCR *jcr, pathid_cache &ppathid_cache, Jo
* after having finished PathHierarchy processing, otherwise prevention
* from duplicate key violations in build_path_hierarchy() will not work.
*/
db_end_transaction(jcr);
end_transaction(jcr);

/* Inserting path records for JobId */
Mmsg(cmd, "INSERT INTO PathVisibility (PathId, JobId) "
Expand Down Expand Up @@ -282,7 +282,7 @@ bool B_DB::update_path_hierarchy_cache(JCR *jcr, pathid_cache &ppathid_cache, Jo
free(result);
}

db_start_transaction(jcr);
start_transaction(jcr);

if (get_type_index() == SQL_TYPE_SQLITE3) {
Mmsg(cmd, "INSERT INTO PathVisibility (PathId, JobId) "
Expand Down

0 comments on commit 833d2e3

Please sign in to comment.