aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2006-08-28 17:26:38 +0000
committerWarner Losh <imp@FreeBSD.org>2006-08-28 17:26:38 +0000
commit58178f669383e64b1ef806f6c38246c05e584df4 (patch)
tree56f407798aad8510012936784a0b327a21bc3b02
parent22ccb20de4bdd1f06ea549cf24ab92e97542cc0b (diff)
downloadsrc-58178f669383e64b1ef806f6c38246c05e584df4.tar.gz
src-58178f669383e64b1ef806f6c38246c05e584df4.zip
Import on vendor branch two files that have been tweaked to unbreak
the build. The openbsm folks are free to fix it in any other way they see fit once they resurface. Basically, make everything always be const char **, even though const char ** usually should be 'const char * const *' in most cases. This makes the three different definitions consistant and allows world to build.
Notes
Notes: svn path=/vendor/openbsm/dist/; revision=161701
-rw-r--r--contrib/openbsm/bsm/audit_record.h4
-rw-r--r--contrib/openbsm/libbsm/bsm_token.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/openbsm/bsm/audit_record.h b/contrib/openbsm/bsm/audit_record.h
index 79d13c3c3c20..13828309fd07 100644
--- a/contrib/openbsm/bsm/audit_record.h
+++ b/contrib/openbsm/bsm/audit_record.h
@@ -322,8 +322,8 @@ token_t *au_to_subject64_ex(au_id_t auid, uid_t euid, gid_t egid, uid_t ruid,
token_t *au_to_exec_args(char *args, int argc);
token_t *au_to_exec_env(char *envs, int envc);
#else
-token_t *au_to_exec_args(char **argv);
-token_t *au_to_exec_env(char **envp);
+token_t *au_to_exec_args(const char **argv);
+token_t *au_to_exec_env(const char **envp);
#endif
token_t *au_to_text(char *text);
token_t *au_to_kevent(struct kevent *kev);
diff --git a/contrib/openbsm/libbsm/bsm_token.c b/contrib/openbsm/libbsm/bsm_token.c
index f90cbc9f19ac..31985f3b01ec 100644
--- a/contrib/openbsm/libbsm/bsm_token.c
+++ b/contrib/openbsm/libbsm/bsm_token.c
@@ -1055,7 +1055,7 @@ au_to_me(void)
* text count null-terminated strings
*/
token_t *
-au_to_exec_args(char **argv)
+au_to_exec_args(const char **argv)
{
token_t *t;
u_char *dptr = NULL;
@@ -1096,7 +1096,7 @@ au_to_exec_args(char **argv)
* text count null-terminated strings
*/
token_t *
-au_to_exec_env(char **envp)
+au_to_exec_env(const char **envp)
{
token_t *t;
u_char *dptr = NULL;