diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-08-12 16:24:19 -0700 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-08-12 16:24:19 -0700 |
commit | 5ae2f0c0135758020c46091491068a009e8ac10b (patch) | |
tree | 0369e72bc132c8cdb7133c6c5c3eb12285926e22 /src/commit.h | |
parent | b2e60e4eb5efc2d8ab78371ecd85e8a1f482134d (diff) | |
download | libgit2-5ae2f0c0135758020c46091491068a009e8ac10b.tar.gz |
commit: Add support for Encoding header
Diffstat (limited to 'src/commit.h')
-rw-r--r-- | src/commit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commit.h b/src/commit.h index 3d15c5044..ff2f28248 100644 --- a/src/commit.h +++ b/src/commit.h @@ -17,8 +17,8 @@ struct git_commit { git_signature *author; git_signature *committer; + char *message_encoding; char *message; - char *message_short; }; void git_commit__free(git_commit *c); |