From c949400dbae4093886cf0cb4dbf633833bbf042c Mon Sep 17 00:00:00 2001 From: JinmingHu Date: Fri, 4 Sep 2020 17:30:07 +0800 Subject: [PATCH] fix bug in file sas (#597) --- .../azure-storage-files-shares/src/share_sas_builder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/storage/azure-storage-files-shares/src/share_sas_builder.cpp b/sdk/storage/azure-storage-files-shares/src/share_sas_builder.cpp index 633ac78de..c71bbd5e5 100644 --- a/sdk/storage/azure-storage-files-shares/src/share_sas_builder.cpp +++ b/sdk/storage/azure-storage-files-shares/src/share_sas_builder.cpp @@ -117,7 +117,7 @@ namespace Azure { namespace Storage { namespace Files { namespace Shares { { builder.AppendQuery("sp", Permissions); } - builder.AppendQuery("sig", signature, true); + builder.AppendQuery("sig", signature); if (!CacheControl.empty()) { builder.AppendQuery("rscc", CacheControl);