From 5dceb7c07db5fef9271cf4d7e28287e48aaf922e Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 23 Oct 2017 14:17:35 +0200 Subject: [PATCH] styleup --- src/actions.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/actions.cpp b/src/actions.cpp index 112e6f8..56b7171 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -1852,8 +1852,8 @@ int action_lock_sec (bool yes, i = KR.pairs.begin(), e = KR.pairs.end(); i != e; ++i) { if (keyspec_matches (filter, i->second.pub.name, i->first)) - if(!i->second.lock (withlock)) { - err("error: key locking failed"); + if (!i->second.lock (withlock)) { + err ("error: key locking failed"); return false; } } @@ -1913,8 +1913,8 @@ int action_unlock_sec (bool yes, i = KR.pairs.begin(), e = KR.pairs.end(); i != e; ++i) { if (keyspec_matches (filter, i->second.pub.name, i->first)) - if(!i->second.unlock (withlock)) { - err("error: key unlocking failed"); + if (!i->second.unlock (withlock)) { + err ("error: key unlocking failed"); return false; } }