Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Jul 2005 18:40:48 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 79854 for review
Message-ID:  <200507091840.j69Iem57082801@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=79854

Change 79854 by rwatson@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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200507091840.j69Iem57082801>