bug: Use PATH_SEPARATOR instead of slash

In function get_fname_suffix, previously it uses /, but in fact it
should use PATH_SEPARATOR.
This commit is contained in:
Suphanat Chunhapanya 2018-09-03 03:19:24 +07:00 committed by David Goulet
parent 8e57986e7d
commit 5e1d36c7db

View File

@ -112,8 +112,8 @@ get_fname_suffix(const char *name, const char *suffix)
setup_directory();
if (!name)
return temp_dir;
tor_snprintf(buf,sizeof(buf),"%s/%s%s%s",temp_dir,name,suffix ? "_" : "",
suffix ? suffix : "");
tor_snprintf(buf,sizeof(buf),"%s%s%s%s%s", temp_dir, PATH_SEPARATOR, name,
suffix ? "_" : "", suffix ? suffix : "");
return buf;
}