Fix path construction
Thanks to Renzokuken for pointing that !
This commit is contained in:
parent
385be75f7e
commit
c2dd35633b
@ -18,10 +18,11 @@
|
||||
char *default_path(const char *biphome, const char *filename, const char *desc)
|
||||
{
|
||||
char *conf_file;
|
||||
// '/' and NULL
|
||||
// '/' and \0
|
||||
conf_file = bip_malloc(strlen(biphome) + strlen(filename) + 2);
|
||||
strcpy(conf_file, biphome);
|
||||
conf_file[strlen(biphome)] = '/';
|
||||
conf_file[strlen(biphome) + 1] = '\0';
|
||||
strcat(conf_file, filename);
|
||||
mylog(LOG_INFO, "Using default %s: %s", desc, conf_file);
|
||||
return conf_file;
|
||||
|
Loading…
Reference in New Issue
Block a user