diff options
author | Christian Heimes <christian@cheimes.de> | 2013-08-25 12:19:29 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-08-25 12:19:29 (GMT) |
commit | cfa47962c2cedbdefc86f1f4f3b24ec489f326c8 (patch) | |
tree | ed358677b5d0b64eb593d24728b4c4b85a29b83c /Modules | |
parent | 2769d44827055b9cf1190e6d08dc1625fef65e3c (diff) | |
parent | 61636e7105bac4753f6796834b899ad30aeee492 (diff) | |
download | cpython-cfa47962c2cedbdefc86f1f4f3b24ec489f326c8.zip cpython-cfa47962c2cedbdefc86f1f4f3b24ec489f326c8.tar.gz cpython-cfa47962c2cedbdefc86f1f4f3b24ec489f326c8.tar.bz2 |
Issue #18747: Fix spelling errors in my commit message and comments,
thanks to Vajrasky Kok for proof-reading.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 6b43d22..a5086ca 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -2944,7 +2944,7 @@ fails or if it does not provide enough data to seed PRNG."); /* Seed OpenSSL's PRNG at fork(), http://bugs.python.org/issue18747 * * The parent handler seeds the PRNG from pseudo-random data like pid, the - * current time (miliseconds or seconds) and an uninitialized arry. + * current time (miliseconds or seconds) and an uninitialized array. * The array contains stack variables that are impossible to predict * on most systems, e.g. function return address (subject to ASLR), the * stack protection canary and automatic variables. @@ -2953,7 +2953,7 @@ fails or if it does not provide enough data to seed PRNG."); * Note: * The code uses pthread_atfork() until Python has a proper atfork API. The * handlers are not removed from the child process. A parent handler is used - * instead of a child handler because fork() is suppose to be async-signal + * instead of a child handler because fork() is supposed to be async-signal * safe but the handler calls unsafe functions. */ |