From: Stefan Fritsch Date: Tue, 8 Nov 2011 23:27:52 +0000 (+0000) Subject: fix typo X-Git-Tag: 2.3.16~237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44cd57149b84601a4fdf50d76beb1014662afd29;p=thirdparty%2Fapache%2Fhttpd.git fix typo git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199528 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index d5eadf3c900..48c430098b6 100644 --- a/server/core.c +++ b/server/core.c @@ -4622,7 +4622,7 @@ AP_CORE_DECLARE(void) ap_random_parent_after_fork(void) /* * To ensure that the RNG state in the parent changes after the fork, we * pull some data from the RNG and discard it. This ensures that the RNG - * states in the children ar different even after the pid wraps around. + * states in the children are different even after the pid wraps around. * As we only use apr_random for insecure random bytes, pulling 2 bytes * should be enough. * XXX: APR should probably have some dedicated API to do this, but it