git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2cb4d7f
)
use ssl error code instead of CANL_ERR_GeneralSSLError for now (temporary solution)
author
Marcel Poul
<marcel.poul@cern.ch>
Mon, 23 Jan 2012 10:54:54 +0000
(10:54 +0000)
committer
Marcel Poul
<marcel.poul@cern.ch>
Mon, 23 Jan 2012 10:54:54 +0000
(10:54 +0000)
emi.canl.canl-c/src/canl_err.c
patch
|
blob
|
blame
|
history
diff --git
a/emi.canl.canl-c/src/canl_err.c
b/emi.canl.canl-c/src/canl_err.c
index
7dd0489
..
b691687
100644
(file)
--- a/
emi.canl.canl-c/src/canl_err.c
+++ b/
emi.canl.canl-c/src/canl_err.c
@@
-217,7
+217,10
@@
static canl_err_code resolve_error_code(glb_ctx *cc, unsigned long err_code,
break;
case SSL_ERROR:
/* XXX Add mapping based on canl_err_desc.c */
- cc->err_code = CANL_ERR_GeneralSSLError;
+ /* TODO use err_code until mechanism mapping ssl_codes to
+ * canl_code is implemented
+ * cc->err_code = CANL_ERR_GeneralSSLError; */
+ cc->err_code = err_code;
break;
case CANL_ERROR:
cc->err_code = err_code;