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

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/tag.c
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-07-08 20:31:05 +0400
committerVicent Marti <tanoku@gmail.com>2011-07-09 04:40:16 +0400
commitd483a911b89eaecb3af603efe2dceeb402cbf3ae (patch)
tree099ecf8ae6cbf731cb571cf2278b7c89cf0d75c3 /src/tag.c
parent27df4275f2b3301f117f538929f51f0e86f9f716 (diff)
signature: Fix optional header
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tag.c b/src/tag.c
index f508fb7e2..39254a961 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -227,7 +227,7 @@ int git_tag_create(
}
type_str = git_object_type2string(git_object_type(target));
- tagger_str_len = git_signature__write(&tagger_str, "tagger", tagger);
+ tagger_str_len = git_signature__write(&tagger_str, "tagger ", tagger);
type_str_len = strlen(type_str);
tag_name_len = strlen(tag_name);
@@ -413,4 +413,4 @@ int git_tag_list_match(git_strarray *tag_names, const char *pattern, git_reposit
int git_tag_list(git_strarray *tag_names, git_repository *repo)
{
return git_tag_list_match(tag_names, "", repo);
-} \ No newline at end of file
+}