Skip to content

Commit

Permalink
Merge branch 'jn/send-pack-error' into maint
Browse files Browse the repository at this point in the history
* jn/send-pack-error:
  send-pack: avoid redundant "pack-objects died with strange error"
  • Loading branch information
Junio C Hamano committed Nov 24, 2010
2 parents a274f5b + 64f003a commit d2a9922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/send-pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static int pack_objects(int fd, struct ref *refs, struct extra_have_objects *ext
}

if (finish_command(&po))
return error("pack-objects died with strange error");
return -1;
return 0;
}

Expand Down

0 comments on commit d2a9922

Please sign in to comment.