mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
Remove unnecessary strcpy
This commit is contained in:
parent
59f08ccd66
commit
2547bd75d9
@ -505,10 +505,7 @@ void downloadfile(const char *url, struct download *buffer)
|
|||||||
}
|
}
|
||||||
// Send our request
|
// Send our request
|
||||||
char request[2300];
|
char request[2300];
|
||||||
char method[5] = "HEAD"; // Get the GameTDB timestamp
|
|
||||||
int ret, len;
|
int ret, len;
|
||||||
if (!buffer->gametdbcheck)
|
|
||||||
strcpy(method, "GET");
|
|
||||||
len = snprintf(request, sizeof(request),
|
len = snprintf(request, sizeof(request),
|
||||||
"%s %s HTTP/1.1\r\n"
|
"%s %s HTTP/1.1\r\n"
|
||||||
"Host: %s\r\n"
|
"Host: %s\r\n"
|
||||||
@ -516,7 +513,7 @@ void downloadfile(const char *url, struct download *buffer)
|
|||||||
"Connection: close\r\n"
|
"Connection: close\r\n"
|
||||||
"Pragma: no-cache\r\n"
|
"Pragma: no-cache\r\n"
|
||||||
"Cache-Control: no-cache\r\n\r\n",
|
"Cache-Control: no-cache\r\n\r\n",
|
||||||
method, path, host, GetRev());
|
buffer->gametdbcheck ? "HEAD" : "GET", path, host, GetRev());
|
||||||
if ((ret = https_write(&httpinfo, request, len, false)) != len)
|
if ((ret = https_write(&httpinfo, request, len, false)) != len)
|
||||||
{
|
{
|
||||||
#ifdef DEBUG_NETWORK
|
#ifdef DEBUG_NETWORK
|
||||||
|
Loading…
Reference in New Issue
Block a user