1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

libsmb: Remove "const" from smb_create_blob->tag

I want to TALLOC_FREE that soon, and we do a talloc_strdup into this anyway.

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2020-02-05 17:00:48 +02:00 committed by Jeremy Allison
parent 859a86b37e
commit 149217ce56

View File

@ -24,7 +24,7 @@
#define _LIBCLI_SMB_SMB2_CREATE_BLOB_H_
struct smb2_create_blob {
const char *tag;
char *tag;
DATA_BLOB data;
};