New commits:
commit 389dc7a5fcb9ddf457772350bd7508f0c728154d
Author: Andrew Cagney <cag...@gnu.org>
Date:   Fri Jan 12 12:28:51 2024 -0500

    impair: simplify (?) unsigned impair values
    
    The single biased unsigned is replaced by:
      struct impair_unsigned {
        bool enabled;
        unsigned value;
      }
    which means code that looked like:
       if (impair.what != 0)
          ... use impair.what-1/*unbias*/ ...
    becomes:
       if (impair.what.enabled)
          ... use impair.what.value ...
    this also means that -ve values are no possible
    
    Event values, which use the same code, are also updated.

commit b9d2ece50f7b62cac5170ea8beb5c5aa551538e0
Author: Andrew Cagney <cag...@gnu.org>
Date:   Fri Jan 12 14:53:21 2024 -0500

    testing: update impair messages

_______________________________________________
Swan-commit mailing list
Swan-commit@lists.libreswan.org
https://lists.libreswan.org/mailman/listinfo/swan-commit

Reply via email to