Remove Realpath() unlicensed implementation

It is probably not usefull anyway
This commit is contained in:
Thomas Bernard
2021-01-28 22:32:53 +01:00
parent 0fc6aa12f1
commit b9806bfbf3
7 changed files with 21 additions and 122 deletions

View File

@@ -998,7 +998,7 @@ int Load_INI(T_Config * conf)
if (conf->Scripts_directory == NULL)
{
// Default when empty:
char * path = Realpath(Data_directory, NULL);
char * path = Realpath(Data_directory);
conf->Scripts_directory = Filepath_append_to_dir(path, SCRIPTS_SUBDIRECTORY);
free(path);
}