Fix spelling: resistent -> resistant

This commit is contained in:
Todd C. Miller
2023-10-12 10:20:34 -06:00
parent 98c2eeafd5
commit 2d437c793d
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@
#ifndef SUDO_AUTH_H #ifndef SUDO_AUTH_H
#define SUDO_AUTH_H #define SUDO_AUTH_H
/* Private auth function return values (rowhammer resistent). */ /* Private auth function return values (rowhammer resistant). */
#define AUTH_INTR 0x69d61fc8 /* 1101001110101100001111111001000 */ #define AUTH_INTR 0x69d61fc8 /* 1101001110101100001111111001000 */
#define AUTH_NONINTERACTIVE 0x1629e037 /* 0010110001010011110000000110111 */ #define AUTH_NONINTERACTIVE 0x1629e037 /* 0010110001010011110000000110111 */

View File

@@ -36,11 +36,11 @@
# define SUDOERS_NAME_MATCH # define SUDOERS_NAME_MATCH
#endif #endif
/* Allowed by policy (rowhammer resistent). */ /* Allowed by policy (rowhammer resistant). */
#undef ALLOW #undef ALLOW
#define ALLOW 0x52a2925 /* 0101001010100010100100100101 */ #define ALLOW 0x52a2925 /* 0101001010100010100100100101 */
/* Denied by policy (rowhammer resistent). */ /* Denied by policy (rowhammer resistant). */
#undef DENY #undef DENY
#define DENY 0xad5d6da /* 1010110101011101011011011010 */ #define DENY 0xad5d6da /* 1010110101011101011011011010 */

View File

@@ -234,7 +234,7 @@ struct sudoers_context {
#define FLAG_BAD_PASSWORD 0x200U #define FLAG_BAD_PASSWORD 0x200U
/* /*
* Return values for check_user() (rowhammer resistent). * Return values for check_user() (rowhammer resistant).
*/ */
#undef AUTH_SUCCESS #undef AUTH_SUCCESS
#define AUTH_SUCCESS 0x52a2925 /* 0101001010100010100100100101 */ #define AUTH_SUCCESS 0x52a2925 /* 0101001010100010100100100101 */