From 8bccd95e275fae760a991da394235e4e70e57bbd Mon Sep 17 00:00:00 2001 From: Michal Zidek Date: Wed, 15 Oct 2014 18:01:55 +0200 Subject: responders: Do not initialize pipe fd if already present Allow to skip initialization of pipe file descriptor if the responder context already has one. Reviewed-by: Pavel Reichl Reviewed-by: Simo Sorce --- src/responder/ssh/sshsrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/responder/ssh') diff --git a/src/responder/ssh/sshsrv.c b/src/responder/ssh/sshsrv.c index 1328d1746..b154ee1ba 100644 --- a/src/responder/ssh/sshsrv.c +++ b/src/responder/ssh/sshsrv.c @@ -92,7 +92,7 @@ int ssh_process_init(TALLOC_CTX *mem_ctx, ssh_cmds = get_ssh_cmds(); ret = sss_process_init(mem_ctx, ev, cdb, ssh_cmds, - SSS_SSH_SOCKET_NAME, NULL, + SSS_SSH_SOCKET_NAME, -1, NULL, -1, CONFDB_SSH_CONF_ENTRY, SSS_SSH_SBUS_SERVICE_NAME, SSS_SSH_SBUS_SERVICE_VERSION, -- cgit