Rename flags union.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2245 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-07-13 03:12:19 +00:00
parent 98dd9c4f85
commit 89f24db43f
2 changed files with 8 additions and 8 deletions

View File

@@ -92,9 +92,9 @@ init(int argc, char **argv)
"kadmin",
NULL);
ent.expires = 0;
ent.u.s.forwardable = 1;
ent.u.s.renewable = 1;
ent.u.s.server = 1;
ent.flags.b.forwardable = 1;
ent.flags.b.renewable = 1;
ent.flags.b.server = 1;
db->store(context, db, &ent);
hdb_free_entry(context, &ent);
@@ -116,7 +116,7 @@ init(int argc, char **argv)
"kadmin",
NULL);
ent.expires = 0;
ent.u.s.locked = 1;
ent.flags.b.locked = 1;
db->store(context, db, &ent);
hdb_free_entry(context, &ent);
}