зеркало из https://github.com/mozilla/pjs.git
Moving fe_GetConfigDir() to prefs.
This commit is contained in:
Родитель
7538bde7f7
Коммит
6bca8d8d94
|
@ -28,7 +28,7 @@
|
|||
#include "jsapi.h"
|
||||
#include "jsbuffer.h"
|
||||
#include "xpassert.h"
|
||||
|
||||
#include "xp_mcom.h"
|
||||
|
||||
/*
|
||||
* pref_InitInitialObjects
|
||||
|
@ -112,3 +112,27 @@ char *fe_GetConfigDirFilename(char *filename)
|
|||
{
|
||||
return "/tmp";
|
||||
}
|
||||
|
||||
|
||||
#ifndef MOZ_USER_DIR
|
||||
#define MOZ_USER_DIR ".mozilla"
|
||||
#endif
|
||||
|
||||
char *fe_GetConfigDir(void) {
|
||||
char *home = getenv("HOME");
|
||||
if (home) {
|
||||
char *config_dir;
|
||||
|
||||
int len = strlen(home);
|
||||
len += strlen("/") + strlen(MOZ_USER_DIR) + 1;
|
||||
|
||||
config_dir = (char *)XP_CALLOC(len, sizeof(char));
|
||||
// we really should use XP_STRN*_SAFE but this is MODULAR_NETLIB
|
||||
XP_STRCPY(config_dir, home);
|
||||
XP_STRCAT(config_dir, "/");
|
||||
XP_STRCAT(config_dir, MOZ_USER_DIR);
|
||||
return config_dir;
|
||||
}
|
||||
|
||||
return strdup("/tmp");
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче