summaryrefslogtreecommitdiff
path: root/src/error.nobj.lua
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-09-08 10:58:34 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-09-08 10:58:34 +0100
commit2ac4ed31dc76fe7b04dd9bdaf83472b82ee1a63d (patch)
treecbbfdeb3c31ca513904f87f1c155e2fb027f02f3 /src/error.nobj.lua
parent2c920a74a9653adb625070a5f416f6394aae8147 (diff)
downloadluagit2-2ac4ed31dc76fe7b04dd9bdaf83472b82ee1a63d.tar.gz
rework: fix up changes in error codes
Diffstat (limited to 'src/error.nobj.lua')
-rw-r--r--src/error.nobj.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/error.nobj.lua b/src/error.nobj.lua
index 3338b5d..38789ce 100644
--- a/src/error.nobj.lua
+++ b/src/error.nobj.lua
@@ -41,11 +41,14 @@ error_code "GitError" "int" {
case GIT_EBUFS:
err_str = "EBUFS";
break;
+ case GIT_EUSER:
+ err_str = "EUSER";
+ break;
case GIT_PASSTHROUGH:
err_str = "PASSTHROUGH";
break;
- case GIT_REVWALKOVER:
- err_str = "REVWALKOVER";
+ case GIT_ITEROVER:
+ err_str = "ITEROVER";
break;
case GIT_OK:
default: