Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-11-21 16:57:54 +0300
committerJunio C Hamano <gitster@pobox.com>2018-11-21 16:57:55 +0300
commitab6409c66ddad8ee69771bb6e4978950d066523c (patch)
tree7b8e805d813f945cca078f0044507ae082b59b64 /builtin
parent761868b693e2c034148c32bb7fba182a0b381d44 (diff)
parentc3b9bc94b9bee431323856fe2c373312c60969d7 (diff)
Merge branch 'en/double-semicolon-fix' into maint
Code clean-up. * en/double-semicolon-fix: Remove superfluous trailing semicolons
Diffstat (limited to 'builtin')
-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 1e9d0dfb6d..6c047b5e28 100644
--- a/builtin/receive-pack.c
+++ b/builtin/receive-pack.c
@@ -465,7 +465,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 */