1
0
Fork 0

This section was accidentally committed togetehr with another patch, it turned out it needed a fix since env was already declared.

This commit is contained in:
ehofman 2005-11-13 10:20:15 +00:00
parent a76bbbd23f
commit 496dd14e21

View file

@ -178,7 +178,7 @@ fgSetDefaults ()
#elif defined(sgi)
fgSetString("/sim/startup/browser-app", "launchWebJumper");
#else
char *envp = ::getenv( "WEBBROWSER" );
envp = ::getenv( "WEBBROWSER" );
if (!envp) envp = "netscape";
fgSetString("/sim/startup/browser-app", envp);
#endif