From: Volker Lendecke Date: Wed, 5 Feb 2020 15:00:48 +0000 (+0200) Subject: libsmb: Remove "const" from smb_create_blob->tag X-Git-Tag: ldb-2.1.1~138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=149217ce56219280236822c86f1d8e89b311dd86;p=thirdparty%2Fsamba.git 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 --- 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; };