summaryrefslogtreecommitdiff
path: root/quota.h
diff options
context:
space:
mode:
Diffstat (limited to 'quota.h')
-rw-r--r--quota.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/quota.h b/quota.h
index 0607e04..3628614 100644
--- a/quota.h
+++ b/quota.h
@@ -8,7 +8,7 @@ typedef u_int32_t qid_t; /* Type in which we store ids in memory */
typedef int64_t qsize_t; /* Type in which we store size limitations */
#define QSIZE_MAX INT64_MAX /* Maximum value storable in qsize_t */
-#define MAXQUOTAS 2
+#define MAXQUOTAS 3
#define USRQUOTA 0 /* element used for user quotas */
#define GRPQUOTA 1 /* element used for group quotas */
#define PRJQUOTA 2 /* element used for project quotas */
@@ -21,6 +21,7 @@ typedef int64_t qsize_t; /* Type in which we store size limitations */
#define INITQFNAMES { \
N_("user"), /* USRQUOTA */ \
N_("group"), /* GRPQUOTA */ \
+ N_("project"), /* PRJQUOTA */ \
N_("undefined"), \
}