implemented last commit; removed todo

This commit is contained in:
Václav Šmejkal 2022-11-23 19:52:03 +01:00
parent 80f8fc6967
commit 8d136b726f
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19

View File

@ -20,11 +20,11 @@ int initLogger(char *directoryPath)
struct tm tm = *localtime(&timeL); struct tm tm = *localtime(&timeL);
int buffer = 1; int buffer = 1;
int returning; int returning;
char *filePath = malloc(strlen(directoryPath) + strlen(LOG_FORMAT) + 2); char *filePath = malloc(strlen(directoryPath) + 1 + strlen(LOG_FORMAT) + 1);
char *dateBuffer = malloc(strlen("yyyy-mm-dd") + 17); //TODO: MAKE THIS VARIABLE; FIND OUT WHY TF YOU NEED 17 MORE BYTES char *dateBuffer = malloc(strlen(LOG_FORMAT_START) + 1);
DIR *dir; DIR *dir;
sprintf(dateBuffer, "%04d-%02d-%02d", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday); sprintf(dateBuffer, LOG_FORMATTING_START, tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday);
//CREATE directoryPath DIRECTORY IF IT DOESN'T EXISTS ALREADY //CREATE directoryPath DIRECTORY IF IT DOESN'T EXISTS ALREADY
if (stat(directoryPath, &st) == -1) if (stat(directoryPath, &st) == -1)