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

Fix encoding

parent 4a877988
No related branches found
No related tags found
No related merge requests found
......@@ -76,9 +76,9 @@ ldap_txn_end(
txnber = ber_alloc_t( LBER_USE_DER );
if( commit ) {
ber_printf( txnber, "{o}", txnid );
ber_printf( txnber, "{ON}", txnid );
} else {
ber_printf( txnber, "{bo}", commit, txnid );
ber_printf( txnber, "{bON}", commit, txnid );
}
ber_flatten( txnber, &txnval );
......@@ -106,9 +106,9 @@ ldap_txn_end_s(
txnber = ber_alloc_t( LBER_USE_DER );
if( commit ) {
ber_printf( txnber, "{o}", txnid );
ber_printf( txnber, "{ON}", txnid );
} else {
ber_printf( txnber, "{bo}", commit, txnid );
ber_printf( txnber, "{bON}", commit, txnid );
}
ber_flatten( txnber, &txnval );
......
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