aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/AssetCache.cs
diff options
context:
space:
mode:
authorJeff Ames2007-10-31 05:29:51 +0000
committerJeff Ames2007-10-31 05:29:51 +0000
commit7f0d836d35e579632413e1b06d5f5e6e6981ca05 (patch)
treeb7b2dad1fad193ff43ec431c046d381f7f9751bc /OpenSim/Framework/Communications/Cache/AssetCache.cs
parentThank you Teravus, very much, for a 'jump', 'crouch' and 'inertia' patch for ... (diff)
downloadopensim-SC_OLD-7f0d836d35e579632413e1b06d5f5e6e6981ca05.zip
opensim-SC_OLD-7f0d836d35e579632413e1b06d5f5e6e6981ca05.tar.gz
opensim-SC_OLD-7f0d836d35e579632413e1b06d5f5e6e6981ca05.tar.bz2
opensim-SC_OLD-7f0d836d35e579632413e1b06d5f5e6e6981ca05.tar.xz
made illogical bitwise operations logical
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/AssetCache.cs')
-rw-r--r--OpenSim/Framework/Communications/Cache/AssetCache.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs
index ca2fc35..5457d14 100644
--- a/OpenSim/Framework/Communications/Cache/AssetCache.cs
+++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs
@@ -681,7 +681,7 @@ namespace OpenSim.Framework.Communications.Cache
681 SendPacket(); 681 SendPacket();
682 counter++; 682 counter++;
683 683
684 if ((request.PacketCounter >= request.NumPackets) | counter > 100 | (request.NumPackets == 1) | 684 if ((request.PacketCounter >= request.NumPackets) || counter > 100 || (request.NumPackets == 1) ||
685 (request.DiscardLevel == -1)) 685 (request.DiscardLevel == -1))
686 { 686 {
687 return true; 687 return true;