diff options
author | Jeff Ames | 2007-10-31 08:07:20 +0000 |
---|---|---|
committer | Jeff Ames | 2007-10-31 08:07:20 +0000 |
commit | f42afe81afc225b26abb1468b70a4f6b17c63472 (patch) | |
tree | c6eeed45f20be820d6e75a2bb569ef51367efa3d /OpenSim | |
parent | fixed filenames in log messages (diff) | |
download | opensim-SC_OLD-f42afe81afc225b26abb1468b70a4f6b17c63472.zip opensim-SC_OLD-f42afe81afc225b26abb1468b70a4f6b17c63472.tar.gz opensim-SC_OLD-f42afe81afc225b26abb1468b70a4f6b17c63472.tar.bz2 opensim-SC_OLD-f42afe81afc225b26abb1468b70a4f6b17c63472.tar.xz |
added .dat extension to dumped asset files
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/AssetTransactions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetTransactions.cs b/OpenSim/Framework/Communications/Cache/AssetTransactions.cs index 6b08fc9..9e9ec05 100644 --- a/OpenSim/Framework/Communications/Cache/AssetTransactions.cs +++ b/OpenSim/Framework/Communications/Cache/AssetTransactions.cs | |||
@@ -289,7 +289,7 @@ namespace OpenSim.Framework.Communications.Cache | |||
289 | { | 289 | { |
290 | DateTime now = DateTime.Now; | 290 | DateTime now = DateTime.Now; |
291 | string filename = | 291 | string filename = |
292 | String.Format("{6}_{7}_{0:d2}{1:d2}{2:d2}_{3:d2}{4:d2}{5:d2}", now.Year, now.Month, now.Day, | 292 | String.Format("{6}_{7}_{0:d2}{1:d2}{2:d2}_{3:d2}{4:d2}{5:d2}.dat", now.Year, now.Month, now.Day, |
293 | now.Hour, now.Minute, now.Second, Asset.Name, Asset.Type); | 293 | now.Hour, now.Minute, now.Second, Asset.Name, Asset.Type); |
294 | SaveAssetToFile(filename, Asset.Data); | 294 | SaveAssetToFile(filename, Asset.Data); |
295 | } | 295 | } |