aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2006-09-01 15:47:07 +0000
committerRobert Watson <rwatson@FreeBSD.org>2006-09-01 15:47:07 +0000
commit85feadf62abb053e6689d5e9cc8959b83d304f1d (patch)
tree11199b2420c9e0fd2f9845e97347907368e8536a
parent58178f669383e64b1ef806f6c38246c05e584df4 (diff)
downloadsrc-85feadf62abb053e6689d5e9cc8959b83d304f1d.tar.gz
src-85feadf62abb053e6689d5e9cc8959b83d304f1d.zip
Back out imp's quick build fix for OpenBSM now that the prototypes and
functions are in sync between the kernel and user space. This restores bsm_token.c as found in OpenBSM 1.0 alpha 9.
Notes
Notes: svn path=/vendor/openbsm/dist/; revision=161818
-rw-r--r--contrib/openbsm/libbsm/bsm_token.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/openbsm/libbsm/bsm_token.c b/contrib/openbsm/libbsm/bsm_token.c
index 31985f3b01ec..f90cbc9f19ac 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(const char **argv)
+au_to_exec_args(char **argv)
{
token_t *t;
u_char *dptr = NULL;
@@ -1096,7 +1096,7 @@ au_to_exec_args(const char **argv)
* text count null-terminated strings
*/
token_t *
-au_to_exec_env(const char **envp)
+au_to_exec_env(char **envp)
{
token_t *t;
u_char *dptr = NULL;