Removed unnecessary block before get request. Possible bug fix for Synology NAS ticket #27

This commit is contained in:
Joseph Henry 2018-10-23 10:58:25 -07:00
parent 15d0aad3c0
commit 7dbccf08ae

View file

@ -633,10 +633,6 @@ static int cli(int argc,char **argv)
fprintf(stderr,"invalid network ID format, must be a 16-digit hexidecimal number\n");
return 2;
}
char jsons[1024], cl[128];
OSUtils::ztsnprintf(cl,sizeof(cl),"%u",(unsigned int)strlen(jsons));
requestHeaders["Content-Type"] = "application/json";
requestHeaders["Content-Length"] = cl;
const unsigned int scode = Http::GET(1024 * 1024 * 16,60000,(const struct sockaddr *)&addr,"/network",requestHeaders,responseHeaders,responseBody);
if (scode == 0) {