summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2016-08-12 13:50:38 +0200
committerRainer Jung <rjung@apache.org>2016-08-12 13:50:38 +0200
commit145ff1c92abfcf1fc3a9c4415eeafd00d28362b2 (patch)
tree297348b70c9ff89715d7a9c205ca11168452082b
parentCommiting to repor to not get later errors and continue the work elsewhere. (diff)
downloadapache2-145ff1c92abfcf1fc3a9c4415eeafd00d28362b2.tar.xz
apache2-145ff1c92abfcf1fc3a9c4415eeafd00d28362b2.zip
Clarify some z/OS mysteries via code comments.
Followup to r1421305. PR 56210 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1756163 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/ssl/ssl_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ssl/ssl_util.c b/modules/ssl/ssl_util.c
index 7c6af0d4bd..052d23e822 100644
--- a/modules/ssl/ssl_util.c
+++ b/modules/ssl/ssl_util.c
@@ -373,9 +373,9 @@ static void ssl_util_thr_id(CRYPTO_THREADID *id)
*/
#ifdef __MVS__
struct PSA {
- char unmapped[540];
+ char unmapped[540]; /* PSATOLD is at offset 540 in the PSA */
unsigned long PSATOLD;
- } *psaptr = 0;
+ } *psaptr = 0; /* PSA is at address 0 */
CRYPTO_THREADID_set_numeric(id, psaptr->PSATOLD);
#else