summaryrefslogtreecommitdiffstats
path: root/commit.c
diff options
context:
space:
mode:
Diffstat (limited to 'commit.c')
-rw-r--r--commit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/commit.c b/commit.c
index 9ac533c85a..a4f2e74c0b 100644
--- a/commit.c
+++ b/commit.c
@@ -888,7 +888,8 @@ static long format_commit_message(const struct commit *commit,
fill_person(table + ICOMMITTER_NAME,
msg + i + 10, eol - i - 10);
else if (!prefixcmp(msg + i, "encoding "))
- table[IENCODING].value = xstrndup(msg + i, eol - i);
+ table[IENCODING].value =
+ xstrndup(msg + i + 9, eol - i - 9);
i = eol;
}
if (msg[i])
/td>Linus Torvalds1-2/+2 2006-06-05Fix typo in tutorial-2.txtLinus Torvalds1-1/+1 2006-06-05Fix Documentation/everyday.txt: Junio's workflowHorst H. von Brand1-7/+12 2006-06-05Add example xinetd(8) configuration to Documentation/everyday.txtHorst H. von Brand1-0/+23 2006-06-05read-tree: fix eye-candy.Linus Torvalds1-0/+1 2006-06-04gitview: Add some useful keybindings.Aneesh Kumar K.V2-0/+21 2006-06-03read-tree --reset: update working tree file for conflicted paths.Junio C Hamano1-10/+14 2006-06-03Documentation: Spelling fixesHorst H. von Brand28-47/+47 2006-06-03Builtin git-rev-parse.Christian Couder4-6/+8 2006-06-03fetch: do not report "same" unless -verbose.Junio C Hamano1-1/+4 2006-06-02Update documentation for git-format-patchDennis Stosberg1-34/+35 2006-06-02fetch.c: do not call process_tree() from process_tree().Junio C Hamano1-3/+10 2006-06-02sha1_file: avoid re-preparing duplicate packsJeff King1-0/+6 2006-06-02handle concurrent pruning of packed objectsJeff King1-6/+18 2006-06-02format-patch: resurrect extra headers from configJohannes Schindelin3-3/+26 2006-05-31http: prevent segfault during curl handle reuseNick Hengeveld1-3/+6 2006-05-31send-email: only 'require' instead of 'use' Net::SMTPJohannes Schindelin1-1/+1 2006-05-31Allow multiple -m options to git-commit.Shawn Pearce1-7/+30 2006-05-31fetch.c: do not pass uninitialized lock to unlock_ref().Junio C Hamano1-4/+7 2006-05-31format-patch --signoffJunio C Hamano3-2/+52 2006-05-31git-svnimport: Improved detection of merges.Florian Forster1-2/+9 2006-05-30Improved pack format documentation.Shawn Pearce1-3/+8 2006-05-30tree_entry(): new tree-walking helper functionLinus Torvalds11-141/+112 2006-05-30git_exec_path, execv_git_cmd: ignore empty environment variablesDmitry V. Levin1-2/+2 2006-05-30execv_git_cmd: Fix stack buffer overflow.Dmitry V. Levin1-9/+23 2006-05-30Fixed Cygwin CR-munging problem in mailsplitSalikh Zakirov1-1/+1 2006-05-30send-email: do not pass bogus address to local sendmail binaryJunio C Hamano2-8/+17