Skip to content
Snippets Groups Projects
Commit e3dd26c3 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6273

parent 92e33f8b
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,7 @@ OpenLDAP 2.4.18 Engineering
Fixed tools off by one error (ITS#6233)
Fixed tools resource leaks (ITS#6145)
Fixed contrib/autogroup with RE24 (ITS#6227)
Fixed contrib/nss symbols (ITS#6273)
Build Environment
Tests note which backend is being tested (ITS#5810)
Fixed test056-monitor with custom ports (ITS#6213)
......
......@@ -74,7 +74,7 @@ static int write_host(nssov_host_cbp *cbp,Entry *entry)
} else {
dupname = -1;
for (i=0; i<numname; i++) {
if ( ber_bvmatch(&name, &a->a_nvals[i])) {
if ( bvmatch(&name, &a->a_nvals[i])) {
dupname = i;
break;
}
......
......@@ -74,7 +74,7 @@ static int write_network(nssov_network_cbp *cbp,Entry *entry)
} else {
dupname = -1;
for (i=0; i<numname; i++) {
if ( ber_bvmatch(&name, &a->a_nvals[i])) {
if ( bvmatch(&name, &a->a_nvals[i])) {
dupname = i;
break;
}
......
......@@ -75,7 +75,7 @@ static int write_protocol(nssov_protocol_cbp *cbp,Entry *entry)
} else {
dupname = -1;
for (i=0; i<numname; i++) {
if ( ber_bvmatch(&name, &a->a_nvals[i])) {
if ( bvmatch(&name, &a->a_nvals[i])) {
dupname = i;
break;
}
......
......@@ -77,7 +77,7 @@ static int write_rpc(nssov_rpc_cbp *cbp,Entry *entry)
} else {
dupname = -1;
for (i=0; i<numname; i++) {
if ( ber_bvmatch(&name, &a->a_nvals[i])) {
if ( bvmatch(&name, &a->a_nvals[i])) {
dupname = i;
break;
}
......
......@@ -139,7 +139,7 @@ static int write_service(nssov_service_cbp *cbp,Entry *entry)
} else {
dupname = -1;
for (i=0; i<numname; i++) {
if ( ber_bvmatch(&name, &a->a_nvals[i])) {
if ( bvmatch(&name, &a->a_nvals[i])) {
dupname = i;
break;
}
......
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