ITS#9763 Maintain values in order of insertion

This commit is contained in:
Ondřej Kuzník 2021-12-08 17:14:50 +00:00 committed by Quanah Gibson-Mount
parent a5e7fdce48
commit e87569f983

View File

@ -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 );