diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-12-09 14:49:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:29:04 -0500 |
commit | 913d1a91b807db6ffb766ebaa4bee1bfc2c1d849 (patch) | |
tree | 4239b071dbaa776748bd2deac35b53ef01cc5067 | |
parent | 00306527b6b5f7b392cf4be98444283458ede619 (diff) | |
download | samba-913d1a91b807db6ffb766ebaa4bee1bfc2c1d849.tar.gz samba-913d1a91b807db6ffb766ebaa4bee1bfc2c1d849.tar.bz2 samba-913d1a91b807db6ffb766ebaa4bee1bfc2c1d849.zip |
r20094: this should be non-const
metze
(This used to be commit 1b6621814ba83724e05c0c2bea28d6eb295a3655)
-rw-r--r-- | source4/librpc/rpc/dcerpc_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index 978cc5cd3e..bedecee2b9 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -232,7 +232,7 @@ const char *epm_floor_string(TALLOC_CTX *mem_ctx, struct epm_floor *epm_floor) /* form a binding string from a binding structure */ -const char *dcerpc_binding_string(TALLOC_CTX *mem_ctx, const struct dcerpc_binding *b) +char *dcerpc_binding_string(TALLOC_CTX *mem_ctx, const struct dcerpc_binding *b) { char *s = talloc_strdup(mem_ctx, ""); int i; |