summaryrefslogtreecommitdiff
path: root/builtin/receive-pack.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2018-09-24 10:30:47 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-09-24 10:30:47 -0700
commitae109a9789da452192588b517f893f6bda6383e6 (patch)
treefa0bfe3be065bcf20fe1671effadc57ba0aab23e /builtin/receive-pack.c
parentMerge branch 'jk/reopen-tempfile-truncate' (diff)
parentRemove superfluous trailing semicolons (diff)
downloadtgif-ae109a9789da452192588b517f893f6bda6383e6.tar.xz
Merge branch 'en/double-semicolon-fix'
Code clean-up. * en/double-semicolon-fix: Remove superfluous trailing semicolons
Diffstat (limited to 'builtin/receive-pack.c')
-rw-r--r--builtin/receive-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c
index a3bb13af10..4d30001950 100644
--- a/builtin/receive-pack.c
+++ b/builtin/receive-pack.c
@@ -466,7 +466,7 @@ static char *prepare_push_cert_nonce(const char *path, timestamp_t stamp)
unsigned char sha1[GIT_SHA1_RAWSZ];
strbuf_addf(&buf, "%s:%"PRItime, path, stamp);
- hmac_sha1(sha1, buf.buf, buf.len, cert_nonce_seed, strlen(cert_nonce_seed));;
+ hmac_sha1(sha1, buf.buf, buf.len, cert_nonce_seed, strlen(cert_nonce_seed));
strbuf_release(&buf);
/* RFC 2104 5. HMAC-SHA1-80 */