summaryrefslogtreecommitdiffstats
path: root/src/providers/ipa/ipa_subdomains_server.c
diff options
context:
space:
mode:
authorPetr Cech <pcech@redhat.com>2016-07-12 10:03:56 +0200
committerLukas Slebodnik <lslebodn@redhat.com>2016-08-05 13:14:38 +0200
commit2427b40566cf63880f3650b26a2fee91cb28de24 (patch)
tree328ea7255f23efcb8aba4afadcb6db0c3c508666 /src/providers/ipa/ipa_subdomains_server.c
parenteb92441b65e0db9e64c88a57eb74358640e85d56 (diff)
downloadsssd-2427b40566cf63880f3650b26a2fee91cb28de24.tar.gz
sssd-2427b40566cf63880f3650b26a2fee91cb28de24.tar.xz
sssd-2427b40566cf63880f3650b26a2fee91cb28de24.zip
IPA: Changing of confusing debug message
This debug message used to confuse our users. So this patch changes it. Old version: "Trust direction of %s is %s\n" New version: "Trust type of [%s]: %s\n" Resolves: https://fedorahosted.org/sssd/ticket/3090 Reviewed-by: Pavel Březina <pbrezina@redhat.com>
Diffstat (limited to 'src/providers/ipa/ipa_subdomains_server.c')
-rw-r--r--src/providers/ipa/ipa_subdomains_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_subdomains_server.c b/src/providers/ipa/ipa_subdomains_server.c
index 43636098f..a2fed36fb 100644
--- a/src/providers/ipa/ipa_subdomains_server.c
+++ b/src/providers/ipa/ipa_subdomains_server.c
@@ -117,7 +117,7 @@ const char *ipa_trust_dir2str(uint32_t direction)
} else if (direction & LSA_TRUST_DIRECTION_INBOUND) {
return "one-way inbound: local domain trusts the remote domain";
} else if (direction == 0) {
- return "trust direction not set";
+ return "not set";
}
return "unknown";