From eeecc48d22a28bb69da56f6ffd8824163fc9bf00 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Apr 01 2015 11:50:21 +0000 Subject: 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 Reviewed-by: Jan Cholasta --- diff --git a/src/responder/ssh/sshsrv_cmd.c b/src/responder/ssh/sshsrv_cmd.c index e7bed3a..4833587 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);