summaryrefslogtreecommitdiffstats
path: root/src/secmgr-wrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/secmgr-wrap.c')
-rw-r--r--src/secmgr-wrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/secmgr-wrap.c b/src/secmgr-wrap.c
index 57f5d20..78680a5 100644
--- a/src/secmgr-wrap.c
+++ b/src/secmgr-wrap.c
@@ -36,7 +36,7 @@ static int retcode(enum lib_retcode rc)
case SECURITY_MANAGER_ERROR_REQ_NOT_COMPLETE: errno = EBADMSG; break;
case SECURITY_MANAGER_ERROR_AUTHENTICATION_FAILED: errno = EPERM; break;
case SECURITY_MANAGER_ERROR_ACCESS_DENIED: errno = EACCES; break;
- default: errno = 0; break;
+ default: errno = ECANCELED; break;
}
return -1;
}