Clear errno before check.

This commit is contained in:
Roger A. Light 2022-08-16 00:23:06 +01:00
parent 49ebb58569
commit b22df5140e

View File

@ -358,6 +358,7 @@ static int dynsec__config_load(void)
cJSON *tree;
/* Load from file */
errno = 0;
fptr = fopen(config_file, "rb");
if(fptr == NULL){
mosquitto_log_printf(MOSQ_LOG_ERR, "Error loading Dynamic security plugin config: File is not readable - check permissions.\n");