From 6485c2f83d3863da916edeee220e5c59e192e92a Mon Sep 17 00:00:00 2001 From: Mateo Cindric Date: Thu, 9 Feb 2023 16:23:50 +0000 Subject: [PATCH] ietf-system-augeas: fix spacing --- src/plugins/ietf-system-augeas/datastore/running/store.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/ietf-system-augeas/datastore/running/store.c b/src/plugins/ietf-system-augeas/datastore/running/store.c index 06eda68..20a1938 100644 --- a/src/plugins/ietf-system-augeas/datastore/running/store.c +++ b/src/plugins/ietf-system-augeas/datastore/running/store.c @@ -121,7 +121,9 @@ static int system_aug_running_store_hostname(void *priv, const struct lyd_node * static int system_aug_running_store_ntp(void *priv, const struct lyd_node *system_container_node) { int error = 0; + system_ctx_t *ctx = (system_ctx_t *) priv; + struct lyd_node *ntp_container_node = NULL; struct lyd_node *server_list_node = NULL; struct lyd_node *server_name_leaf_node = NULL; @@ -130,6 +132,7 @@ static int system_aug_running_store_ntp(void *priv, const struct lyd_node *syste struct lyd_node *server_association_type_leaf_node = NULL; struct lyd_node *server_iburst_leaf_node = NULL, *server_prefer_leaf_node = NULL; struct lyd_node *udp_container_node = NULL; + system_ntp_server_element_t *ntp_server_head = NULL; bool ntp_enabled = srpc_feature_status_hash_check(ctx->ietf_system_features, "ntp");