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
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2011-01-26 22:29:06 +0300
committerVicent Marti <tanoku@gmail.com>2011-01-29 04:29:41 +0300
commitf2c2471389048b8f930ed945ed1acfe004f901a4 (patch)
tree64ef0cebd41d879423c04addf4b132391726019d /src/errors.c
parent2e6fd09c5d473b3d157aa457ccc82424406e63e1 (diff)
Made path prettifying functions return GIT_EINVALIDPATH instead of GIT_ERROR.
Diffstat (limited to 'src/errors.c')
-rw-r--r--src/errors.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/errors.c b/src/errors.c
index df8b82200..41c4a8d3a 100644
--- a/src/errors.c
+++ b/src/errors.c
@@ -19,6 +19,7 @@ static struct {
{GIT_EFLOCKFAIL, "Failed to adquire or release a file lock"},
{GIT_EZLIB, "The Z library failed to inflate/deflate an object's data"},
{GIT_EBUSY, "The queried object is currently busy"},
+ {GIT_EINVALIDPATH, "The path is invalid"},
};
const char *git_strerror(int num)