Rename flags union.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2242 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-07-13 02:51:56 +00:00
parent c284fdae80
commit 6c4d1be01b
2 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ typedef struct hdb_entry{
krb5_principal changed_by; /* Who did last update */
time_t expires; /* Time when principal expires */
union {
int flags;
int i;
struct {
int initial:1; /* Require AS_REQ */
int forwardable:1; /* Ticket may be forwardable */
@@ -23,8 +23,8 @@ typedef struct hdb_entry{
int allow_postdate:1; /* Ticket may be postdated */
int server:1; /* Principal may be server */
int locked:1; /* Principal is locked */
}s;
}u;
}b;
}flags;
}hdb_entry;
typedef struct HDB{