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
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2011-02-11 15:58:40 +0300
committerVicent Marti <tanoku@gmail.com>2011-03-03 21:23:48 +0300
commit6a0895adea73deeaa72ee7f921205ffccb70c9bc (patch)
treef64cf73a6f8950411e4b7b99a08d1417c8b082ee /src
parentaa2120e9da45017c6fe0126d6e9b1ee20ff40037 (diff)
Added GIT_EINVALIDREFSTATE error.
Diffstat (limited to 'src')
-rw-r--r--src/errors.c3
-rw-r--r--src/git2/common.h3
2 files changed, 5 insertions, 1 deletions
diff --git a/src/errors.c b/src/errors.c
index 3616fdb93..880163f78 100644
--- a/src/errors.c
+++ b/src/errors.c
@@ -26,7 +26,8 @@ static struct {
{GIT_ETOONESTEDSYMREF, "The specified symbolic reference is too deeply nested"},
{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_EREVWALKOVER, "The revision walker is empty; there are no more commits left to iterate"},
+ {GIT_EINVALIDREFSTATE, "The state of the reference is not valid"}
};
const char *git_strerror(int num)
diff --git a/src/git2/common.h b/src/git2/common.h
index 3500a2b14..34efe808b 100644
--- a/src/git2/common.h
+++ b/src/git2/common.h
@@ -154,6 +154,9 @@
/** The revision walker is empty; there are no more commits left to iterate */
#define GIT_EREVWALKOVER (GIT_ERROR - 20)
+/** The state of the reference is not valid */
+#define GIT_EINVALIDREFSTATE (GIT_ERROR - 21)
+
GIT_BEGIN_DECL
/** @} */
GIT_END_DECL