diff options
author | Diva Canto | 2012-03-13 08:07:11 -0700 |
---|---|---|
committer | Diva Canto | 2012-03-13 08:07:11 -0700 |
commit | 37828c9b9a065e5ee4df06e05eecd1e0a41ea07e (patch) | |
tree | fbcc970ef6fa4256e98edf71d1ce4dc9c621440c /OpenSim/Framework/MultipartForm.cs | |
parent | Datasnapshot: added "secret" to the registration/deregistration query so that... (diff) | |
parent | Add max thread and min thread information to "xengine status" region console ... (diff) | |
download | opensim-SC-37828c9b9a065e5ee4df06e05eecd1e0a41ea07e.zip opensim-SC-37828c9b9a065e5ee4df06e05eecd1e0a41ea07e.tar.gz opensim-SC-37828c9b9a065e5ee4df06e05eecd1e0a41ea07e.tar.bz2 opensim-SC-37828c9b9a065e5ee4df06e05eecd1e0a41ea07e.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/MultipartForm.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/MultipartForm.cs b/OpenSim/Framework/MultipartForm.cs index 90c4007..7a13e8b 100644 --- a/OpenSim/Framework/MultipartForm.cs +++ b/OpenSim/Framework/MultipartForm.cs | |||
@@ -119,7 +119,7 @@ namespace OpenSim.Framework | |||
119 | // Copy the temporary stream to the network stream | 119 | // Copy the temporary stream to the network stream |
120 | formDataStream.Seek(0, SeekOrigin.Begin); | 120 | formDataStream.Seek(0, SeekOrigin.Begin); |
121 | using (Stream requestStream = request.GetRequestStream()) | 121 | using (Stream requestStream = request.GetRequestStream()) |
122 | formDataStream.CopyTo(requestStream, (int)formDataStream.Length); | 122 | formDataStream.CopyStream(requestStream, (int)formDataStream.Length); |
123 | } | 123 | } |
124 | 124 | ||
125 | #endregion Stream Writing | 125 | #endregion Stream Writing |