From ecedbbb4ce78255270ea6b15a4c94931425ff2da Mon Sep 17 00:00:00 2001 From: fedir Date: Sun, 4 May 2025 17:05:44 +0200 Subject: [PATCH] Added DENY_TEMP access type --- src/access_t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/access_t.h b/src/access_t.h index 915f4ad..a1bda37 100644 --- a/src/access_t.h +++ b/src/access_t.h @@ -1,6 +1,6 @@ #ifndef ACCESS_T_H #define ACCESS_T_H -typedef enum { DENY, ALLOW, ALLOW_TEMP, NDEF } access_t; +typedef enum { DENY, ALLOW, ALLOW_TEMP, DENY_TEMP, NDEF } access_t; #endif // !ACCESS_T_H