diff options
author | Ben Laurie <ben@apache.org> | 2003-11-05 13:34:53 +0000 |
---|---|---|
committer | Ben Laurie <ben@apache.org> | 2003-11-05 13:34:53 +0000 |
commit | b268eecfae08e5b49aff6f3d4a4c6387bde8d9b0 (patch) | |
tree | 88f9bafaa81def990de0edc3c607ec52872e2f9c /threadproc/unix/proc.c | |
parent | 5d73d34dabf3c12dca325d97c995aabc5d9472d5 (diff) | |
download | apr-b268eecfae08e5b49aff6f3d4a4c6387bde8d9b0.tar.gz apr-b268eecfae08e5b49aff6f3d4a4c6387bde8d9b0.zip |
Endianness and APR types for random.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64728 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/unix/proc.c')
-rw-r--r-- | threadproc/unix/proc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/threadproc/unix/proc.c b/threadproc/unix/proc.c index 9d274b40d..e5fa9a0d1 100644 --- a/threadproc/unix/proc.c +++ b/threadproc/unix/proc.c @@ -233,6 +233,8 @@ APR_DECLARE(apr_status_t) apr_proc_fork(apr_proc_t *proc, apr_pool_t *pool) proc->out = NULL; proc->err = NULL; + apr_random_after_fork(proc); + return APR_INCHILD; } |