From ad40fbe5dcda992eeeff3c89a0da9bd9b8b6e2da Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 26 Jun 2017 14:30:07 +0200 Subject: [PATCH] keyring: write backup before actually touching keys --- src/keyring.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/keyring.cpp b/src/keyring.cpp index 0f8f247..5047fdc 100644 --- a/src/keyring.cpp +++ b/src/keyring.cpp @@ -2,7 +2,7 @@ /* * This file is part of Codecrypt. * - * Copyright (C) 2013-2016 Mirek Kratochvil + * Copyright (C) 2013-2017 Mirek Kratochvil * * Codecrypt is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by @@ -405,8 +405,8 @@ static bool file_put_sencode_with_backup (const std::string&fn, sencode*in, std::string data = in->encode(); if (data == backup_data) return true; //nothing to do - return file_put_string (fn, data) && - file_put_string (backup_fn, backup_data); + return file_put_string (backup_fn, backup_data) && + file_put_string (fn, data); } #ifndef WIN32