diff options
-rw-r--r-- | sshd.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1909,6 +1909,10 @@ main(int ac, char **av) | |||
1909 | } | 1909 | } |
1910 | } | 1910 | } |
1911 | 1911 | ||
1912 | if (getenv("SSH_SIGSTOP")) | ||
1913 | /* Tell service supervisor that we are ready. */ | ||
1914 | kill(getpid(), SIGSTOP); | ||
1915 | |||
1912 | /* Accept a connection and return in a forked child */ | 1916 | /* Accept a connection and return in a forked child */ |
1913 | server_accept_loop(&sock_in, &sock_out, | 1917 | server_accept_loop(&sock_in, &sock_out, |
1914 | &newsock, config_s); | 1918 | &newsock, config_s); |