commit fb755b83b51e79235a2c548dd81d04db933f81e8 from: Stefan Sperling date: Mon Apr 29 13:11:11 2024 UTC move GOTD_ACCESS_DENIED more bits away from GOTD_ACCESS_GRANTED A similar change was made to doas(1) recently in response to rowhammer. commit - 3b9204c0847d7876d8a85203b0f35d50b21a682f commit + fb755b83b51e79235a2c548dd81d04db933f81e8 blob - 02ec51dafe5e458386554dc03f1fad6aa05c0026 blob + a5beda9391d602dffa305641b74ab2961e50f0b4 --- gotd/gotd.h +++ gotd/gotd.h @@ -71,8 +71,8 @@ struct gotd_imsgev { }; enum gotd_access { - GOTD_ACCESS_PERMITTED = 1, - GOTD_ACCESS_DENIED + GOTD_ACCESS_DENIED = -1, + GOTD_ACCESS_PERMITTED = 1 }; struct gotd_access_rule {