URI: 
       Style fixes - 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 1feae458b96873f36e197e2eadcf34bde003b43e
   DIR parent 244b4e3693ebf02d42d2e4e5f996cccaee0658f8
  HTML Author: sin <sin@2f30.org>
       Date:   Fri,  3 May 2019 12:15:19 +0100
       
       Style fixes
       
       Diffstat:
         M bencrypt.c                          |       5 +++--
       
       1 file changed, 3 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/bencrypt.c b/bencrypt.c
       @@ -248,8 +248,9 @@ beget(struct bctx *bctx, unsigned char *md, void *buf, size_t *n)
                        return -1;
                }
        
       -        /* Decrypt block */
                unpacked(ebuf, &ed);
       +
       +        /* Decrypt block */
                if (ed.type == EDNONETYPE) {
                        dn = ed.size;
                        if (*n < dn) {
       @@ -272,7 +273,7 @@ beget(struct bctx *bctx, unsigned char *md, void *buf, size_t *n)
                                                                       NULL,
                                                                       &ebuf[EDSIZE], ed.size,
                                                                       ebuf, EDSIZE,
       -                                                               ed.nonce, ectx->key) != 0) {
       +                                                               ed.nonce, ectx->key) < 0) {
                                free(ebuf);
                                return -1;
                        }