stop using PR_PutEnv and use PR_SetEnv instead. r=sdagley/sr=blake. bug 118187

This commit is contained in:
pinkerton%netscape.com 2002-01-07 15:42:08 +00:00
Родитель 945dc729af
Коммит 628436b865
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -625,8 +625,8 @@ main(int argc, char* argv[])
printf("Using %s as echo server...\n", hostName);
#ifdef XP_MAC
(void) PR_PutEnv("NSPR_LOG_MODULES=nsSocketTransport:5");
(void) PR_PutEnv("NSPR_LOG_FILE=nspr.log");
(void) PR_SetEnv("NSPR_LOG_MODULES=nsSocketTransport:5");
(void) PR_SetEnv("NSPR_LOG_FILE=nspr.log");
PR_Init_Log();
#endif

Просмотреть файл

@ -206,7 +206,7 @@ nsresult nsMacCommandLine::AddToCommandLine(const char* inOptionString, const FS
nsresult nsMacCommandLine::AddToEnvironmentVars(const char* inArgText)
//----------------------------------------------------------------------------------------
{
(void)PR_PutEnv(inArgText);
(void)PR_SetEnv(inArgText);
return NS_OK;
}

Просмотреть файл

@ -206,7 +206,7 @@ nsresult nsMacCommandLine::AddToCommandLine(const char* inOptionString, const FS
nsresult nsMacCommandLine::AddToEnvironmentVars(const char* inArgText)
//----------------------------------------------------------------------------------------
{
(void)PR_PutEnv(inArgText);
(void)PR_SetEnv(inArgText);
return NS_OK;
}