Rename flags to constants in comment - dedup - deduplicating backup program
HTML git clone git://bitreich.org/dedup/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/dedup/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR LICENSE
---
DIR commit 5dfe0aa3dbd6568360c5279fb540d5e4878c30c6
DIR parent 3ae183aa99bba33b67a2f59447e1e835104b629b
HTML Author: sin <sin@2f30.org>
Date: Wed, 1 May 2019 22:26:22 +0100
Rename flags to constants in comment
Diffstat:
M bstorage.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/bstorage.c b/bstorage.c
@@ -27,7 +27,7 @@
#include "queue.h"
#include "tree.h"
-/* block header flags */
+/* block header constants */
#define BHDRMAGIC "DEDUPDIDUPDIDUP"
#define NBHDRMAGIC sizeof(BHDRMAGIC)
#define VMIN 0
@@ -41,7 +41,7 @@
#define CSNAPPYTYPE 1
#define BHDRSIZE (NBHDRMAGIC + 8 + 8)
-/* block descriptor flags */
+/* block descriptor constants */
#define BDTYPE 0x100
#define BDSIZE (8 + 8 + 8 + 8 + (MDSIZE))