diff options
author | rwatson <rwatson@FreeBSD.org> | 2005-02-02 10:55:32 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2005-02-02 10:55:32 +0000 |
commit | d2c9006fb572d62b689561459965dc5b05674746 (patch) | |
tree | 15fc5bc9948adcb59dc02a446e55e49d96301ae2 | |
parent | e5d427bd13aa1fa571d2fe7d86908b98c1811d60 (diff) | |
download | FreeBSD-src-d2c9006fb572d62b689561459965dc5b05674746.zip FreeBSD-src-d2c9006fb572d62b689561459965dc5b05674746.tar.gz |
Add a place-holder f_label void * for a future struct label pointer
required for the port of SELinux FLASK/TE to FreeBSD using the MAC
Framework.
-rw-r--r-- | sys/sys/file.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/file.h b/sys/sys/file.h index d3a9e9f..febbf4d 100644 --- a/sys/sys/file.h +++ b/sys/sys/file.h @@ -131,6 +131,7 @@ struct file { off_t f_nextoff; /* * offset of next expected read or write */ + void *f_label; /* Place-holder for struct label pointer. */ }; #endif /* _KERNEL */ |