diff options
author | Alan Rogers <alan@github.com> | 2014-05-20 17:40:28 +1000 |
---|---|---|
committer | Alan Rogers <alan@github.com> | 2014-05-20 17:40:28 +1000 |
commit | 9055347944ff13fd5e91de0b29caeecb41c8bff4 (patch) | |
tree | 9a2eb5844fe910261a6c7d1b148843b26d144e35 /include | |
parent | dc4906f12aedd608b01d04415fdca838eba045f6 (diff) | |
download | libgit2-9055347944ff13fd5e91de0b29caeecb41c8bff4.tar.gz |
Rename GIT_ENOACCESS -> GIT_EUNREADABLE
Diffstat (limited to 'include')
-rw-r--r-- | include/git2/errors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/errors.h b/include/git2/errors.h index f09e72566..3fb3f5635 100644 --- a/include/git2/errors.h +++ b/include/git2/errors.h @@ -41,7 +41,7 @@ typedef enum { GIT_EMERGECONFLICT = -13, /*< Merge conflicts prevented operation */ GIT_ELOCKED = -14, /*< Lock file prevented operation */ GIT_EMODIFIED = -15, /*< Reference value does not match expected */ - GIT_ENOACCESS = -16, /*< Access denied attempting operation */ + GIT_EUNREADABLE = -16, /*< File or folder is unreadable */ GIT_PASSTHROUGH = -30, /*< Internal only */ GIT_ITEROVER = -31, /*< Signals end of iteration with iterator */ |