mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-31 14:50:34 +08:00
ITS#9763 Maintain values in order of insertion
This commit is contained in:
parent
a5e7fdce48
commit
e87569f983
@ -249,8 +249,11 @@ refint_cf_gen(ConfigArgs *c)
|
||||
ip = ch_malloc (
|
||||
sizeof ( refint_attrs ) );
|
||||
ip->attr = ad;
|
||||
ip->next = dd->attrs;
|
||||
dd->attrs = ip;
|
||||
|
||||
for ( pipp = &dd->attrs; *pipp; pipp = &(*pipp)->next )
|
||||
/* Get to the end */ ;
|
||||
ip->next = *pipp;
|
||||
*pipp = ip;
|
||||
} else {
|
||||
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
||||
"%s <%s>: %s", c->argv[0], c->argv[i], text );
|
||||
|
Loading…
x
Reference in New Issue
Block a user