-
Eric Vidal authoredEric Vidal authored
tree_resolve_master_copy.c 979 B
/*
* tree_resolve_master_copy.c
*
* Copyright (c) 2018-2021 Eric Vidal <eric@obarun.org>
*
* All rights reserved.
*
* This file is part of Obarun. It is subject to the license terms in
* the LICENSE file found in the top-level directory of this
* distribution.
* This file may not be copied, modified, propagated, or distributed
* except according to the terms contained in the LICENSE file.
*/
#include <stddef.h>
#include <skalibs/stralloc.h>
#include <66/tree.h>
int tree_resolve_master_copy(resolve_tree_master_t *dst, resolve_tree_master_t *mres)
{
log_flow() ;
stralloc_free(&dst->sa) ;
size_t len = mres->sa.len - 1 ;
dst->salen = mres->salen ;
if (!stralloc_catb(&dst->sa,mres->sa.s,len) ||
!stralloc_0(&dst->sa))
return 0 ;
dst->name = mres->name ;
dst->allow = mres->allow ;
dst->enabled = mres->enabled ;
dst->current = mres->current ;
dst->nenabled = mres->nenabled ;
return 1 ;
}