From 1c5f682f4dcbca5afa9dd4a9688bde40efaeb12c Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Mon, 30 Oct 2023 11:16:55 +0000 Subject: Revamp (and hopefully fix) resattr management Signed-off-by: Laurent Bercot --- src/config/conftree.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/config/conftree.c') diff --git a/src/config/conftree.c b/src/config/conftree.c index d4b01ef..a146188 100644 --- a/src/config/conftree.c +++ b/src/config/conftree.c @@ -42,11 +42,6 @@ static int confnode_write (uint32_t d, unsigned int h, void *data) { node *nod = genalloc_s(node, &conftree.ga) + d ; (void)h ; - if ((conftree.storage->s[nod->key] & ~0x20) == 'A') - { - conftree.storage->s[++nod->data] |= '@' ; - nod->datalen-- ; - } return cdbmake_add((cdbmaker *)data, conftree.storage->s + nod->key, nod->keylen, conftree.storage->s + nod->data, nod->datalen) ; } -- cgit v1.3.1