summaryrefslogtreecommitdiffstats
path: root/src/util/util_errors.c
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2013-06-18 12:28:36 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-06-21 10:00:28 +0200
commite5f455afbc2d149527bfd08f4e89903a3a8da17a (patch)
tree4dfbd9044175db000ff6bbcb4ae8f39ebaa23f46 /src/util/util_errors.c
parentb509de2164be8fa9a8d52d70883f4ec70b4bddf8 (diff)
downloadsssd-e5f455afbc2d149527bfd08f4e89903a3a8da17a.tar.gz
sssd-e5f455afbc2d149527bfd08f4e89903a3a8da17a.tar.xz
sssd-e5f455afbc2d149527bfd08f4e89903a3a8da17a.zip
failover: return error when SRV lookup returned only duplicates
https://fedorahosted.org/sssd/ticket/1947 Otherwise we risk that the meta server is removed from the server list, but without a chance to return, because there may be no fo_server with srv_data = meta. Also if state->meta->next is NULL (it is still orphaned because we try to errornously expand it without invoking collapse first), state->out will be NULL and SSSD will crash. New error code: ERR_SRV_DUPLICATES
Diffstat (limited to 'src/util/util_errors.c')
-rw-r--r--src/util/util_errors.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/util_errors.c b/src/util/util_errors.c
index 22a3045a6..015c5acaf 100644
--- a/src/util/util_errors.c
+++ b/src/util/util_errors.c
@@ -44,6 +44,7 @@ struct err_string error_to_str[] = {
{ "Host Access Denied" }, /* ERR_ACCESS_DENIED */
{ "SRV record not found" }, /* ERR_SRV_NOT_FOUND */
{ "SRV lookup error" }, /* ERR_SRV_LOOKUP_ERROR */
+ { "SRV lookup did not return any new server "}, /* ERR_SRV_DUPLICATES */
{ "Dynamic DNS update failed" }, /* ERR_DYNDNS_FAILED */
{ "Dynamic DNS update timed out" }, /* ERR_DYNDNS_TIMEOUT */
{ "Dynamic DNS update not possible while offline" }, /* ERR_DYNDNS_OFFLINE */