PERFORCE change 79854 for review
Robert Watson
rwatson at FreeBSD.org
Sat Jul 9 18:40:48 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=79854
Change 79854 by rwatson at rwatson_zoo on 2005/07/09 18:40:34
Add prototypes for functions; the FreeBSD kernel build has more
strict prototyping requirements than the Linux kernel version this
SEBSD code is derived from.
Affected files ...
.. //depot/projects/trustedbsd/sebsd/sys/security/sebsd/ss/security.h#9 edit
.. //depot/projects/trustedbsd/sebsd/sys/security/sebsd/ss/sidtab.h#5 edit
Differences ...
==== //depot/projects/trustedbsd/sebsd/sys/security/sebsd/ss/security.h#9 (text+ko) ====
@@ -94,7 +94,7 @@
#define security_free_context(ctx) ({ if (ctx) free(ctx, M_SEBSD); })
int security_get_bool_string(int *len, char *out);
-int security_commit_pending_bools();
+int security_commit_pending_bools(void);
int security_set_bool(char *name, int value);
int security_get_bool(char *name, int *value, int *pending);
==== //depot/projects/trustedbsd/sebsd/sys/security/sebsd/ss/sidtab.h#5 (text+ko) ====
@@ -38,6 +38,7 @@
int sidtab_init(struct sidtab *s);
int sidtab_insert(struct sidtab *s, security_id_t sid, struct context *context);
+int sidtab_remove(struct sidtab *s, security_id_t sid);
struct context *sidtab_search(struct sidtab *s, security_id_t sid);
int sidtab_map(struct sidtab *s,
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list