View | Details | Raw Unified | Return to bug 282875 | Differences between
and this patch

Collapse All | Expand All

(-)src/wallet/bdb.cpp (-1 / +1 lines)
Lines 627-633 Link Here
627
                        return false;
627
                        return false;
628
                    }
628
                    }
629
629
630
                    fs::copy_file(pathSrc, pathDest, fs::copy_option::overwrite_if_exists);
630
                    fs::copy_file(pathSrc, pathDest, fs::copy_options::overwrite_existing);
631
                    LogPrintf("copied %s to %s\n", strFile, pathDest.string());
631
                    LogPrintf("copied %s to %s\n", strFile, pathDest.string());
632
                    return true;
632
                    return true;
633
                } catch (const fs::filesystem_error& e) {
633
                } catch (const fs::filesystem_error& e) {

Return to bug 282875