summary refs log tree commit diff
path: root/ripple/fossil/src/store.proto
diff options
context:
space:
mode:
Diffstat (limited to 'ripple/fossil/src/store.proto')
-rw-r--r--ripple/fossil/src/store.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/ripple/fossil/src/store.proto b/ripple/fossil/src/store.proto
index e0e3e59..14a689e 100644
--- a/ripple/fossil/src/store.proto
+++ b/ripple/fossil/src/store.proto
@@ -1,5 +1,5 @@
 // SPDX-FileCopyrightText: edef <edef@unfathomable.blue>
-// SPDX-License-Identifier: OSL-3.0
+// SPDX-License-Identifier: OSL-3.0 OR MIT OR Apache-2.0
 
 syntax = "proto3";
 
@@ -20,8 +20,8 @@ message DirectoryNode {
 message FileNode {
     string name = 1;
     bytes ref = 2;
-    bool executable = 3;
-    uint32 size = 4;
+    uint32 size = 3;
+    bool executable = 4;
 }
 
 message LinkNode {