]> git.ipfire.org Git - thirdparty/openssl.git/commit - Configure
Correct slight logic error in processing IF in build.info
authorRichard Levitte <levitte@openssl.org>
Wed, 9 Mar 2016 22:58:44 +0000 (23:58 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 9 Mar 2016 22:58:44 +0000 (23:58 +0100)
commitc5798e0eb557cf13852a3982429a641d5c88bcbe
treea6cb211ced5d39d10f93e045d1e8d488f4c9b1ea
parent64b9d84bfd0da0305a1df9b97ffbdc3898f59e62
Correct slight logic error in processing IF in build.info

This corrects a fault where the inner IF in this example was still
being acted upon:

  IF[0]
    ...whatever...
    IF[1]
      ...whatever more...
    ENDIF
  ENDIF

With this change, the inner IF is skipped over.

Reviewed-by: Matt Caswell <matt@openssl.org>
Configure