]> granicus.if.org Git - apache/commitdiff
Clarify some z/OS mysteries via code comments.
authorRainer Jung <rjung@apache.org>
Fri, 12 Aug 2016 11:50:38 +0000 (11:50 +0000)
committerRainer Jung <rjung@apache.org>
Fri, 12 Aug 2016 11:50:38 +0000 (11:50 +0000)
Followup to r1421305.
PR 56210

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1756163 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_util.c

index 7c6af0d4bda50d726c3a6298113b82374b906177..052d23e82205bed510022595d3cf2eafbc1aa81d 100644 (file)
@@ -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