]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
Remove some duplicate semicolons.
authorAndre Noll <maan@systemlinux.org>
Sun, 7 Jul 2013 16:47:36 +0000 (18:47 +0200)
committerAndre Noll <maan@systemlinux.org>
Sat, 13 Jul 2013 17:58:22 +0000 (19:58 +0200)
aft.c
gcrypt.c

diff --git a/aft.c b/aft.c
index 097b2b59c82c12dc448df5ed81360060672f0ded..62ce9fabbe3d86108c10e2936001f463a3cd0aa4 100644 (file)
--- a/aft.c
+++ b/aft.c
@@ -1694,7 +1694,7 @@ static void com_add_callback(int fd, const struct osl_object *query)
        uint16_t afhi_offset, chunks_offset;
 
        hash = (unsigned char *)buf + CAB_HASH_OFFSET;
-       hash_to_asc(hash, asc);;
+       hash_to_asc(hash, asc);
        objs[AFTCOL_HASH].data = buf + CAB_HASH_OFFSET;
        objs[AFTCOL_HASH].size = HASH_SIZE;
 
index 115529cb6b7f67ecdf60754c3c23f461aea4a6bf..b4718ec0f8c7910dbdbb3c451adeaa790e24e0d2 100644 (file)
--- a/gcrypt.c
+++ b/gcrypt.c
@@ -758,13 +758,13 @@ static int decode_rsa(gcry_sexp_t sexp, int key_size, unsigned char *outbuf,
 
        PARA_DEBUG_LOG("decrypted buffer before unpad (%d bytes):\n",
                key_size);
-       dump_buffer("non-unpadded decrypted buffer", oaep_buf, key_size);;
+       dump_buffer("non-unpadded decrypted buffer", oaep_buf, key_size);
        ret = unpad_oaep(oaep_buf, key_size, outbuf, nbytes);
        if (ret < 0)
                goto out_mpi_release;
        PARA_DEBUG_LOG("decrypted buffer after unpad (%zu bytes):\n",
                *nbytes);
-       dump_buffer("unpadded decrypted buffer", outbuf, *nbytes);;
+       dump_buffer("unpadded decrypted buffer", outbuf, *nbytes);
        ret = 1;
 out_mpi_release:
        gcry_mpi_release(out_mpi);