Skip to content
Snippets Groups Projects
Commit c9126165 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix bug in last commit

parent ec345504
No related branches found
No related tags found
No related merge requests found
......@@ -361,7 +361,7 @@ retry: /* transaction retry */
char gid[DB_XIDDATASIZE];
snprintf( gid, sizeof( gid ), "%s-%08lx-%08lx",
bdb_uuid, (long) op->o_connid, (long) op->o_opid );
bdb_uuid.bv_val, (long) op->o_connid, (long) op->o_opid );
if (( rc=TXN_PREPARE( ltid, gid )) != 0 ) {
text = "txn_prepare failed";
......
......@@ -632,7 +632,7 @@ retry: /* transaction retry */
char gid[DB_XIDDATASIZE];
snprintf( gid, sizeof( gid ), "%s-%08lx-%08lx",
bdb_uuid, (long) op->o_connid, (long) op->o_opid );
bdb_uuid.bv_val, (long) op->o_connid, (long) op->o_opid );
if(( rc=TXN_PREPARE( ltid, gid )) != 0 ) {
text = "txn_prepare failed";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment