Commit 87cd706c authored by Rainer Jung's avatar Rainer Jung
Browse files

Clarify some z/OS mysteries via code comments.

Followup to r1421305.
PR 56210

Backport of r1756163 from trunk.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x-openssl-1.1.0-compat@1756164 13f79535-47bb-0310-9956-ffa450edef68
parent 2cce7a88
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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