path to certs changed to folder res

This commit is contained in:
Bogdan Pilyugin 2022-08-24 15:16:57 +02:00
parent 267a7de82a
commit d22992654b

View File

@ -210,14 +210,14 @@ static void OTATask(void *pvParameter)
struct espfs_stat_t stat; struct espfs_stat_t stat;
//open file //open file
file = espfs_fopen(fs, "ca_cert.pem"); file = espfs_fopen(fs, "res/ca_cert.pem");
if (!file) if (!file)
{ {
ESP_LOGE(TAG, "Failed to read certificate file"); ESP_LOGE(TAG, "Failed to read certificate file");
goto update_error; goto update_error;
} }
//get file info //get file info
espfs_stat(fs, "ca_cert.pem", &stat); espfs_stat(fs, "res/ca_cert.pem", &stat);
uint32_t fileSize; uint32_t fileSize;
fileSize = stat.size; fileSize = stat.size;
char *certbuf = (char*) malloc(fileSize); char *certbuf = (char*) malloc(fileSize);