URI: 
       Add some comments - 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 cc34761d0d55ea6c036421cf4fee677ccbe657a4
   DIR parent 6699070ee14aa0fc3a48c52e0a146f6946e39ce5
  HTML Author: sin <sin@2f30.org>
       Date:   Fri, 26 Apr 2019 11:22:11 +0100
       
       Add some comments
       
       Diffstat:
         M bstorage.c                          |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/bstorage.c b/bstorage.c
       @@ -413,7 +413,7 @@ bsopen(struct bctx *bctx, char *path, int flags, int mode, struct bparam *bpar)
                        return -1;
                }
        
       -        /* Populate bparam */
       +        /* Populate bparam compression algo */
                calgo = (bhdr->flags >> CALGOSHIFT) & CALGOMASK;
                switch (calgo) {
                case CNONETYPE:
       @@ -428,6 +428,7 @@ bsopen(struct bctx *bctx, char *path, int flags, int mode, struct bparam *bpar)
                        return -1;
                }
        
       +        /* Populate bparam hash algo */
                halgo = (bhdr->flags >> HALGOSHIFT) & HALGOMASK;
                switch (halgo) {
                case HBLAKE2BTYPE: