From 149217ce56219280236822c86f1d8e89b311dd86 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 5 Feb 2020 17:00:48 +0200 Subject: [PATCH] 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 Reviewed-by: Jeremy Allison --- libcli/smb/smb2_create_blob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.47.2