summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2015-03-24 21:19:03 +0100
committerJakub Hrozek <jhrozek@redhat.com>2015-04-01 13:50:21 +0200
commiteeecc48d22a28bb69da56f6ffd8824163fc9bf00 (patch)
tree17bf46cb489bf65dccca4dfc9ae3e64db45d8f08
parent3b894003cefd026298ada5d83fdf5b4e09023d3f (diff)
downloadsssd-eeecc48d22a28bb69da56f6ffd8824163fc9bf00.tar.gz
sssd-eeecc48d22a28bb69da56f6ffd8824163fc9bf00.tar.xz
sssd-eeecc48d22a28bb69da56f6ffd8824163fc9bf00.zip
SSH: Ignore the default_domain_suffix
https://fedorahosted.org/sssd/ticket/2609 In a trust setup, hosts are normally only stored on the IPA server. The default_domain_suffix option is only recommended for the IPA-AD trust scenario as well. Therefore we should ignore this option in the SSH provider. Reviewed-by: Pavel Březina <pbrezina@redhat.com> Reviewed-by: Jan Cholasta <jcholast@redhat.com>
-rw-r--r--src/responder/ssh/sshsrv_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/responder/ssh/sshsrv_cmd.c b/src/responder/ssh/sshsrv_cmd.c
index e7bed3ab2..483358791 100644
--- a/src/responder/ssh/sshsrv_cmd.c
+++ b/src/responder/ssh/sshsrv_cmd.c
@@ -686,7 +686,7 @@ ssh_cmd_parse_request(struct ssh_cmd_ctx *cmd_ctx)
uint32_t alias_len;
char *alias = NULL;
uint32_t domain_len;
- char *domain = cctx->rctx->default_domain;
+ char *domain = NULL;
sss_packet_get_body(cctx->creq->in, &body, &body_len);