From 6e3bfbe6d39aab16464150cf04f43c04716f97c6 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Tue, 23 Apr 2013 21:00:41 +0200 Subject: [PATCH] actions: fix renaming pubkeys --- src/actions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions.cpp b/src/actions.cpp index 2e981b2..7c6a56e 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -1159,7 +1159,7 @@ int action_rename (bool yes, const std::string & filter, const std::string & name, keyring & KR) { - if (name.length() ) { + if (!name.length() ) { err ("error: missing new name specification"); return 1; }