diff options
author | ylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68> | 2018-06-12 07:51:40 +0000 |
---|---|---|
committer | ylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68> | 2018-06-12 07:51:40 +0000 |
commit | fd605b72366a9b4771c9ab9b56e331be1e8b323a (patch) | |
tree | 7ec35e84a03a26a59502d7b6e62cea33d6884116 /threadproc/unix | |
parent | 4219dbf5bd1e17c781cc23ce632952e39a5e3c58 (diff) | |
download | libapr-fd605b72366a9b4771c9ab9b56e331be1e8b323a.tar.gz |
Follow up to r1833359: apr_crypto_prng_after_fork() can now use a PID.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1833382 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/unix')
-rw-r--r-- | threadproc/unix/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/unix/proc.c b/threadproc/unix/proc.c index de9720045..f7d02d204 100644 --- a/threadproc/unix/proc.c +++ b/threadproc/unix/proc.c @@ -231,7 +231,7 @@ APR_DECLARE(apr_status_t) apr_proc_fork(apr_proc_t *proc, apr_pool_t *pool) apr_random_after_fork(proc); #if APU_HAVE_CRYPTO_PRNG - apr_crypto_prng_after_fork(); + apr_crypto_prng_after_fork(proc); #endif return APR_INCHILD; |