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

@@ -42,7 +42,7 @@ hdb_entry2value(krb5_context context, hdb_entry *ent, krb5_data *value)
krb5_store_int32(sp, ent->last_change);
krb5_store_principal(sp, ent->changed_by);
krb5_store_int32(sp, ent->expires);
krb5_store_int32(sp, ent->u.flags);
krb5_store_int32(sp, ent->flags.i);
krb5_storage_to_data(sp, value);
krb5_storage_free(sp);
}
@@ -67,7 +67,7 @@ hdb_value2entry(krb5_context context, krb5_data *value, hdb_entry *ent)
krb5_ret_int32(sp, &tmp);
ent->expires = tmp;
krb5_ret_int32(sp, &tmp);
ent->u.flags = tmp;
ent->flags.i = tmp;
krb5_storage_free(sp);
}