diff options
| author | liuwentan <[email protected]> | 2023-12-01 17:43:41 +0800 |
|---|---|---|
| committer | liuwentan <[email protected]> | 2023-12-01 17:43:41 +0800 |
| commit | edf3f31debbd5ec94fc969b2c7f0e638813e7c0e (patch) | |
| tree | 1a561ff339c652ffc0d0f387db9ef06ff93d8151 | |
| parent | 2f50548d96a5908f4309e58dbbd45a9e42609384 (diff) | |
[PATCH]get_super_group_ids log_fatal -> log_errorv4.1.14
| -rw-r--r-- | src/maat_group.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/maat_group.c b/src/maat_group.c index 3ed41de..4602421 100644 --- a/src/maat_group.c +++ b/src/maat_group.c @@ -1007,12 +1007,12 @@ static void get_super_group_ids(struct maat_group_topology *group_topo, UT_array *kept_super_group_ids; if (depth >= MAX_RECURSION_DEPTH) { - log_fatal(group_topo->logger, MODULE_GROUP, + log_error(group_topo->logger, MODULE_GROUP, "[%s:%d]exceed max recursion depth(5)", __FUNCTION__, __LINE__); for (int i = 0; i < utarray_len(hit_group_ids); i++) { long long *p = (long long *)utarray_eltptr(hit_group_ids, i); - log_fatal(group_topo->logger, MODULE_GROUP, + log_error(group_topo->logger, MODULE_GROUP, "[%s:%d]group_id:%lld can't recursively get super group_id", __FUNCTION__, __LINE__, *p); } |
