Mercurial > dropbear
comparison svr-main.c @ 1683:41bf8f216644
merge rsa-sha256
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 26 May 2020 00:24:02 +0800 |
parents | e05c0e394f1d |
children | 3f80da5fe0b4 |
comparison
equal
deleted
inserted
replaced
1673:e0871128e61f | 1683:41bf8f216644 |
---|---|
271 if (pipe(childpipe) < 0) { | 271 if (pipe(childpipe) < 0) { |
272 TRACE(("error creating child pipe")) | 272 TRACE(("error creating child pipe")) |
273 goto out; | 273 goto out; |
274 } | 274 } |
275 | 275 |
276 #ifdef DEBUG_NOFORK | 276 #if DEBUG_NOFORK |
277 fork_ret = 0; | 277 fork_ret = 0; |
278 #else | 278 #else |
279 fork_ret = fork(); | 279 fork_ret = fork(); |
280 #endif | 280 #endif |
281 if (fork_ret < 0) { | 281 if (fork_ret < 0) { |