diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2007-05-08 22:40:59 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-08 23:38:49 +0200 | 
| commit | 61c3ca978c586c673aec618cb94210657278dda8 (patch) | |
| tree | 7011987769e65ad0e7aa8b79f648357e9cd88c30 /parsing.c | |
| parent | Layout update (diff) | |
| download | cgit-61c3ca978c586c673aec618cb94210657278dda8.tar.gz cgit-61c3ca978c586c673aec618cb94210657278dda8.tar.bz2 cgit-61c3ca978c586c673aec618cb94210657278dda8.zip | |
Update to libgit 1.5.2-rc2
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
| -rw-r--r-- | parsing.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -201,13 +201,13 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)  struct taginfo *cgit_parse_tag(struct tag *tag)  {  	void *data; -	char type[20]; +	enum object_type type;  	unsigned long size;  	char *p, *t;  	struct taginfo *ret; -	data = read_sha1_file(tag->object.sha1, type, &size); -	if (!data || strcmp(type, tag_type)) { +	data = read_sha1_file(tag->object.sha1, &type, &size); +	if (!data || type != OBJ_TAG) {  		free(data);  		return 0;  	} | 
