mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-17 04:13:55 -05:00
Fix bug in last commit
This commit is contained in:
parent
ec34550487
commit
c912616590
2 changed files with 2 additions and 2 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue