summaryrefslogtreecommitdiffhomepage
path: root/rsa.c
diff options
context:
space:
mode:
authorFrancois Perrad <francois.perrad@gadz.org>2015-12-31 15:59:01 +0100
committerFrancois Perrad <francois.perrad@gadz.org>2015-12-31 16:00:23 +0100
commit23ac7f56fa2acd9f35e6b8ca36602f3c14e986cd (patch)
tree4ad62682f00ce977d0b068757b0332a823d2fe3e /rsa.c
parent4c4aa502d4a65b90a86de6c1af868984565f1fe2 (diff)
refactor indentation with hard tab
Diffstat (limited to 'rsa.c')
-rw-r--r--rsa.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/rsa.c b/rsa.c
index 193e577..1cedbc4 100644
--- a/rsa.c
+++ b/rsa.c
@@ -69,12 +69,12 @@ int buf_get_rsa_pub_key(buffer* buf, dropbear_rsa_key *key) {
}
TRACE(("leave buf_get_rsa_pub_key: success"))
- ret = DROPBEAR_SUCCESS;
+ ret = DROPBEAR_SUCCESS;
out:
- if (ret == DROPBEAR_FAILURE) {
- m_free(key->e);
- m_free(key->n);
- }
+ if (ret == DROPBEAR_FAILURE) {
+ m_free(key->e);
+ m_free(key->n);
+ }
return ret;
}