summaryrefslogtreecommitdiff
path: root/source3/libsmb/clirap.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2004-02-26 14:34:44 +0000
committerVolker Lendecke <vlendec@samba.org>2004-02-26 14:34:44 +0000
commite1190848a17fc54b479315b5f11238461bc3fa62 (patch)
tree6dddcf8a3fc54d6c4af0277433b6d16bcfd25bf7 /source3/libsmb/clirap.c
parentd9819ec090bb533b79a257daa3461045c2422c05 (diff)
downloadsamba-e1190848a17fc54b479315b5f11238461bc3fa62.tar.gz
samba-e1190848a17fc54b479315b5f11238461bc3fa62.tar.bz2
samba-e1190848a17fc54b479315b5f11238461bc3fa62.zip
That const was one too many
(This used to be commit 005d92d57ea912b68dd107152d478fae2162511a)
Diffstat (limited to 'source3/libsmb/clirap.c')
-rw-r--r--source3/libsmb/clirap.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/libsmb/clirap.c b/source3/libsmb/clirap.c
index 98066629d1..f8204e05d6 100644
--- a/source3/libsmb/clirap.c
+++ b/source3/libsmb/clirap.c
@@ -206,9 +206,8 @@ The callback function takes 4 arguments: the machine name, the server type,
the comment and a state pointer.
****************************************************************************/
BOOL cli_NetServerEnum(struct cli_state *cli, char *workgroup, uint32 stype,
- void (*fn)(const char *, uint32, const char *,
- const void *),
- const void *state)
+ void (*fn)(const char *, uint32, const char *, void *),
+ void *state)
{
char *rparam = NULL;
char *rdata = NULL;