diff options
author | Justin Clarke Casey | 2009-02-10 15:35:41 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-02-10 15:35:41 +0000 |
commit | 5b7a5696e50c30dad67af8bd59edae45606cb8e6 (patch) | |
tree | 51587f1361a52ab80b7fb8abd844aaa3f1bd8759 /OpenSim | |
parent | Change the command parser and resolver to be able to disambiguate commands (diff) | |
download | opensim-SC_OLD-5b7a5696e50c30dad67af8bd59edae45606cb8e6.zip opensim-SC_OLD-5b7a5696e50c30dad67af8bd59edae45606cb8e6.tar.gz opensim-SC_OLD-5b7a5696e50c30dad67af8bd59edae45606cb8e6.tar.bz2 opensim-SC_OLD-5b7a5696e50c30dad67af8bd59edae45606cb8e6.tar.xz |
* Overwrite the old saved OpenSim.ini file saved in response to a crash if one already exists
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 b9e82a4..dfa6596 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs | |||
@@ -165,7 +165,7 @@ namespace OpenSim | |||
165 | m_crashLog.WriteLine(msg); | 165 | m_crashLog.WriteLine(msg); |
166 | m_crashLog.Close(); | 166 | m_crashLog.Close(); |
167 | 167 | ||
168 | File.Copy("OpenSim.ini", Path.Combine(m_crashDir, log + "_OpenSim.ini")); | 168 | File.Copy("OpenSim.ini", Path.Combine(m_crashDir, log + "_OpenSim.ini", true)); |
169 | } | 169 | } |
170 | catch (Exception e2) | 170 | catch (Exception e2) |
171 | { | 171 | { |