diff options
author | Carlos Martín Nieto <cmn@elego.de> | 2011-03-31 15:29:13 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@elego.de> | 2011-03-31 15:29:13 +0200 |
commit | f026f2b9ee5f0aeced5c366c890c4a29eee2a1c7 (patch) | |
tree | c26b59992df7ebe645cb9485a4eb70c41e127816 /src/errors.c | |
parent | 11d0e70578baf47fb1cb565e0336e18d417e5da6 (diff) | |
parent | a796d24cf697b0b51aa0ca7ef887e980f0d9fb7a (diff) | |
download | libgit2-f026f2b9ee5f0aeced5c366c890c4a29eee2a1c7.tar.gz |
Merge upstream/development
Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
Diffstat (limited to 'src/errors.c')
-rw-r--r-- | src/errors.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/errors.c b/src/errors.c index 1dc54f945..5e59f8205 100644 --- a/src/errors.c +++ b/src/errors.c @@ -27,7 +27,9 @@ static struct { {GIT_EPACKEDREFSCORRUPTED, "The pack-refs file is either corrupted of its format is not currently supported"}, {GIT_EINVALIDPATH, "The path is invalid" }, {GIT_EREVWALKOVER, "The revision walker is empty; there are no more commits left to iterate"}, - {GIT_EINVALIDREFSTATE, "The state of the reference is not valid"} + {GIT_EINVALIDREFSTATE, "The state of the reference is not valid"}, + {GIT_ENOTIMPLEMENTED, "This feature has not been implemented yet"}, + {GIT_EEXISTS, "A reference with this name already exists"} }; const char *git_strerror(int num) |