From 11fa99416d6e8f4bc9e74cb639a2311a13cad62f Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Wed, 26 Jan 2022 11:10:03 +1100 Subject: [PATCH] hdb: remove HDB_F_CURRENT_KVNO flag remove HDB_F_CURRENT_KVNO flag from hdb.h, it is no longer used --- lib/hdb/hdb.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/hdb/hdb.h b/lib/hdb/hdb.h index a4805cf52..4d167c8e8 100644 --- a/lib/hdb/hdb.h +++ b/lib/hdb/hdb.h @@ -66,7 +66,6 @@ enum hdb_lockop{ HDB_RLOCK, HDB_WLOCK }; #define HDB_F_CANON 32 /* want canonicalition */ #define HDB_F_ADMIN_DATA 64 /* want data that kdc don't use */ #define HDB_F_KVNO_SPECIFIED 128 /* we want a particular KVNO */ -#define HDB_F_CURRENT_KVNO 256 /* we want the current KVNO */ #define HDB_F_LIVE_CLNT_KVNOS 512 /* we want all live keys for pre-auth */ #define HDB_F_LIVE_SVC_KVNOS 1024 /* we want all live keys for tix */ #define HDB_F_ALL_KVNOS 2048 /* we want all the keys, live or not */