1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-05 12:22:11 +03:00

s3:libsmb: remove const from cli_cm_display()

metze
This commit is contained in:
Stefan Metzmacher
2011-07-22 16:05:54 +02:00
parent a560b793ca
commit b3e0b73280
2 changed files with 2 additions and 2 deletions

View File

@ -394,7 +394,7 @@ NTSTATUS cli_cm_open(TALLOC_CTX *ctx,
/****************************************************************************
****************************************************************************/
void cli_cm_display(const struct cli_state *cli)
void cli_cm_display(struct cli_state *cli)
{
int i;

View File

@ -124,7 +124,7 @@ NTSTATUS cli_cm_open(TALLOC_CTX *ctx,
int port,
int name_type,
struct cli_state **pcli);
void cli_cm_display(const struct cli_state *c);
void cli_cm_display(struct cli_state *c);
struct client_dfs_referral;
NTSTATUS cli_dfs_get_referral(TALLOC_CTX *ctx,
struct cli_state *cli,