diff options
author | Francois Perrad <francois.perrad@gadz.org> | 2015-12-31 15:59:01 +0100 |
---|---|---|
committer | Francois Perrad <francois.perrad@gadz.org> | 2015-12-31 16:00:23 +0100 |
commit | 23ac7f56fa2acd9f35e6b8ca36602f3c14e986cd (patch) | |
tree | 4ad62682f00ce977d0b068757b0332a823d2fe3e /rsa.c | |
parent | 4c4aa502d4a65b90a86de6c1af868984565f1fe2 (diff) |
refactor indentation with hard tab
Diffstat (limited to 'rsa.c')
-rw-r--r-- | rsa.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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; } |