summaryrefslogtreecommitdiffhomepage
path: root/signkey.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 /signkey.c
parent4c4aa502d4a65b90a86de6c1af868984565f1fe2 (diff)
refactor indentation with hard tab
Diffstat (limited to 'signkey.c')
-rw-r--r--signkey.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/signkey.c b/signkey.c
index ac5d887..55f34e7 100644
--- a/signkey.c
+++ b/signkey.c
@@ -317,15 +317,15 @@ void buf_put_priv_key(buffer* buf, sign_key *key, enum signkey_type type) {
#ifdef DROPBEAR_DSS
if (type == DROPBEAR_SIGNKEY_DSS) {
buf_put_dss_priv_key(buf, key->dsskey);
- TRACE(("leave buf_put_priv_key: dss done"))
- return;
+ TRACE(("leave buf_put_priv_key: dss done"))
+ return;
}
#endif
#ifdef DROPBEAR_RSA
if (type == DROPBEAR_SIGNKEY_RSA) {
buf_put_rsa_priv_key(buf, key->rsakey);
- TRACE(("leave buf_put_priv_key: rsa done"))
- return;
+ TRACE(("leave buf_put_priv_key: rsa done"))
+ return;
}
#endif
#ifdef DROPBEAR_ECDSA