(empfile): Rename member ef_uid to uid for consistency with other

members.

(empfile): Reorder members for clearer documentation.

(EFF_IMMUTABLE): New.
(EFF_OPEN): Remove, use ~EFF_IMMUTABLE.

(empfile): Don't initialize member size to a useless value for EF_MAP
and EF_BMAP.  ef_init() writes the real value.
This commit is contained in:
Markus Armbruster 2005-10-30 12:50:13 +00:00
parent bb79c64b92
commit b2ae3257ca
4 changed files with 125 additions and 123 deletions

View file

@ -492,7 +492,7 @@ struct castr rpt_ca[] = {
struct castr empfile_ca[] = {
{NSC_STRING, 0, 0, offsetof(struct empfile, name), "name", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct empfile, ef_uid), "uid", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct empfile, uid), "uid", EF_BAD},
{NSC_STRING, 0, 0, offsetof(struct empfile, file), "file_name", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct empfile, flags), "flags", EF_BAD},
{NSC_NOTYPE, 0, 0, 0, NULL, EF_BAD}