diff options
author | Linus Nordberg <linus@nordu.net> | 2011-03-01 13:51:35 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2011-03-01 13:51:35 +0100 |
commit | da2100919c081204ae2fe48e8e3c156bf717d353 (patch) | |
tree | 055058f3c4c1ae2d8d842198ce1790c820ae706a /lib/radsec.c | |
parent | 578e3551a158117399f2d8940c73fb9cb5e3c161 (diff) |
Error handling cleanup
Remove RSE_SOME_ERROR.
rs_tls_init: Push SSL error stack on libradsec error stack.
Diffstat (limited to 'lib/radsec.c')
-rw-r--r-- | lib/radsec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/radsec.c b/lib/radsec.c index 1d8dafc..45c4f42 100644 --- a/lib/radsec.c +++ b/lib/radsec.c @@ -54,7 +54,7 @@ rs_context_create(struct rs_context **ctx, const char *dict) fn = basename (buf2); if (dict_init (dir, fn) < 0) { - err = RSE_SOME_ERROR; + err = RSE_FR; goto err_out; } free (buf1); |