dedup

deduplicating backup program
git clone git://git.2f30.org/dedup
Log | Files | Refs | README | LICENSE

commit 5dfe0aa3dbd6568360c5279fb540d5e4878c30c6
parent 3ae183aa99bba33b67a2f59447e1e835104b629b
Author: sin <sin@2f30.org>
Date:   Wed,  1 May 2019 22:26:22 +0100

Rename flags to constants in comment

Diffstat:
Mbstorage.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

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))