diff options
author | imp <imp@FreeBSD.org> | 2006-08-28 17:26:38 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-08-28 17:26:38 +0000 |
commit | 603e2aafcdd35903b0eaf99fc5800fd84a8ffcbb (patch) | |
tree | f3c38279111a35cccc223bc9b99b99eb08e5eac0 /contrib | |
parent | c390c18c0700180f31db5c63c09f0bf06abfa306 (diff) | |
parent | 1b7c0c7165fc409f74141fc91a0975e804a203fd (diff) | |
download | FreeBSD-src-603e2aafcdd35903b0eaf99fc5800fd84a8ffcbb.zip FreeBSD-src-603e2aafcdd35903b0eaf99fc5800fd84a8ffcbb.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r161701,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/openbsm/bsm/audit_record.h | 4 | ||||
-rw-r--r-- | contrib/openbsm/libbsm/bsm_token.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/openbsm/bsm/audit_record.h b/contrib/openbsm/bsm/audit_record.h index 79d13c3..1382830 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 f90cbc9..31985f3 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; |