diff options
author | Justin Clarke Casey | 2009-02-02 20:01:50 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-02-02 20:01:50 +0000 |
commit | 13a5243d7637fcdbbb1db910a95f61f655d6fe1f (patch) | |
tree | 29012ad062ed08ef42d094119c245f1e5a82096c /OpenSim | |
parent | * Add a few more contributing projects that were not yet listed (diff) | |
download | opensim-SC_OLD-13a5243d7637fcdbbb1db910a95f61f655d6fe1f.zip opensim-SC_OLD-13a5243d7637fcdbbb1db910a95f61f655d6fe1f.tar.gz opensim-SC_OLD-13a5243d7637fcdbbb1db910a95f61f655d6fe1f.tar.bz2 opensim-SC_OLD-13a5243d7637fcdbbb1db910a95f61f655d6fe1f.tar.xz |
* As per http://opensimulator.org/mantis/view.php?id=3065
* Copy OpenSim.ini to _OpenSim.ini on crash instead of opensim.ini
* This makes it work on Linux/Mac(?) as well as Windows
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Application/Application.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index 1b06b30..a8e1499 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs | |||
@@ -162,7 +162,7 @@ namespace OpenSim | |||
162 | m_crashLog.WriteLine(msg); | 162 | m_crashLog.WriteLine(msg); |
163 | m_crashLog.Close(); | 163 | m_crashLog.Close(); |
164 | 164 | ||
165 | File.Copy("opensim.ini", Path.Combine(m_crashDir, log + "_opensim.ini")); | 165 | File.Copy("OpenSim.ini", Path.Combine(m_crashDir, log + "_OpenSim.ini")); |
166 | } | 166 | } |
167 | catch (Exception e2) | 167 | catch (Exception e2) |
168 | { | 168 | { |