diff options
| author | Vicent Martà <tanoku@gmail.com> | 2012-05-18 01:21:06 +0200 |
|---|---|---|
| committer | Vicent Martà <tanoku@gmail.com> | 2012-05-18 01:26:26 +0200 |
| commit | e172cf082e62aa421703080d0bccb7b8762c8bd4 (patch) | |
| tree | c19f7b1be056a9176d4e865f5be5c69a5c2912c6 /src/pkt.c | |
| parent | 2e2e97858de18abd43f7e59fcc6151510c6d3272 (diff) | |
| download | libgit2-e172cf082e62aa421703080d0bccb7b8762c8bd4.tar.gz | |
errors: Rename the generic return codes
Diffstat (limited to 'src/pkt.c')
| -rw-r--r-- | src/pkt.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -208,7 +208,7 @@ int git_pkt_parse_line( /* Not even enough for the length */ if (bufflen > 0 && bufflen < PKT_LEN_SIZE) - return GIT_ESHORTBUFFER; + return GIT_SHORTBUFFER; len = parse_len(line); if (len < 0) { @@ -230,7 +230,7 @@ int git_pkt_parse_line( * enough in the buffer to satisfy this line */ if (bufflen > 0 && bufflen < (size_t)len) - return GIT_ESHORTBUFFER; + return GIT_SHORTBUFFER; line += PKT_LEN_SIZE; /* |
