diff options
author | Justin Clarke Casey | 2009-02-10 15:46:38 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-02-10 15:46:38 +0000 |
commit | 566bc33824bdb33eca78041bcf0f5185bb9b2d86 (patch) | |
tree | 14bdc97eceadc9852856d959c0c4282dcfdd9d6b /OpenSim | |
parent | * Overwrite the old saved OpenSim.ini file saved in response to a crash if on... (diff) | |
download | opensim-SC_OLD-566bc33824bdb33eca78041bcf0f5185bb9b2d86.zip opensim-SC_OLD-566bc33824bdb33eca78041bcf0f5185bb9b2d86.tar.gz opensim-SC_OLD-566bc33824bdb33eca78041bcf0f5185bb9b2d86.tar.bz2 opensim-SC_OLD-566bc33824bdb33eca78041bcf0f5185bb9b2d86.tar.xz |
* Fix build break, parentheses in the wrong place
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 dfa6596..ad98aa3 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", true)); | 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 | { |