summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/util_errors.c1
-rw-r--r--src/util/util_errors.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/util/util_errors.c b/src/util/util_errors.c
index ac08f6277..62d580fe8 100644
--- a/src/util/util_errors.c
+++ b/src/util/util_errors.c
@@ -72,6 +72,7 @@ struct err_string error_to_str[] = {
{ "Invalid SSSD configuration detected." }, /* ERR_INVALID_CONFIG */
{ "Malformed cache entry" }, /* ERR_MALFORMED_ENTRY */
{ "Unexpected cache entry type" }, /* ERR_UNEXPECTED_ENTRY_TYPE */
+ { "Failed to resolve one of user groups." }, /* ERR_SIMPLE_GROUPS_MISSING */
{ "ERR_LAST" } /* ERR_LAST */
};
diff --git a/src/util/util_errors.h b/src/util/util_errors.h
index c03274ce2..c8293a4c6 100644
--- a/src/util/util_errors.h
+++ b/src/util/util_errors.h
@@ -94,6 +94,7 @@ enum sssd_errors {
ERR_INVALID_CONFIG,
ERR_MALFORMED_ENTRY,
ERR_UNEXPECTED_ENTRY_TYPE,
+ ERR_SIMPLE_GROUPS_MISSING,
ERR_LAST /* ALWAYS LAST */
};