diff options
author | Melanie Thielker | 2017-01-13 17:09:08 +0000 |
---|---|---|
committer | Melanie Thielker | 2017-01-13 17:09:08 +0000 |
commit | c74fa02d87058e1d974b47c9a4d49c60ded07b51 (patch) | |
tree | fb8eef1da0cd2e8bc453a0b3aea8a24dae14a675 /OpenSim/Framework | |
parent | Merge branch 'master' of opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC-c74fa02d87058e1d974b47c9a4d49c60ded07b51.zip opensim-SC-c74fa02d87058e1d974b47c9a4d49c60ded07b51.tar.gz opensim-SC-c74fa02d87058e1d974b47c9a4d49c60ded07b51.tar.bz2 opensim-SC-c74fa02d87058e1d974b47c9a4d49c60ded07b51.tar.xz |
Harmonize case in Permissions enum
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Util.cs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 6d679f2..6c0142e 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -63,11 +63,12 @@ namespace OpenSim.Framework | |||
63 | None = 0, | 63 | None = 0, |
64 | 64 | ||
65 | // folded perms | 65 | // folded perms |
66 | foldedTransfer = 1, | 66 | FoldedTransfer = 1, |
67 | foldedModify = 1 << 1, | 67 | FoldedModify = 1 << 1, |
68 | foldedCopy = 1 << 2, | 68 | FoldedCopy = 1 << 2, |
69 | FoldedExport = 1 << 4, | ||
69 | 70 | ||
70 | foldedMask = 0x07, | 71 | FoldedMask = 0x17, |
71 | 72 | ||
72 | // | 73 | // |
73 | Transfer = 1 << 13, | 74 | Transfer = 1 << 13, |