summaryrefslogtreecommitdiff
path: root/libcli
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2020-02-05 17:00:48 +0200
committerJeremy Allison <jra@samba.org>2020-02-07 21:01:30 +0000
commit149217ce56219280236822c86f1d8e89b311dd86 (patch)
tree4dc3d7c6454667a1666d867e8f4598c10a3599c0 /libcli
parent859a86b37ea0740e21d763049351f55a9aa93343 (diff)
downloadsamba-149217ce56219280236822c86f1d8e89b311dd86.tar.gz
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>
Diffstat (limited to 'libcli')
-rw-r--r--libcli/smb/smb2_create_blob.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcli/smb/smb2_create_blob.h b/libcli/smb/smb2_create_blob.h
index 90697a70892..19c6a7a0bd7 100644
--- a/libcli/smb/smb2_create_blob.h
+++ b/libcli/smb/smb2_create_blob.h
@@ -24,7 +24,7 @@
#define _LIBCLI_SMB_SMB2_CREATE_BLOB_H_
struct smb2_create_blob {
- const char *tag;
+ char *tag;
DATA_BLOB data;
};