summaryrefslogtreecommitdiffstats
path: root/macos.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2014-02-16 13:25:02 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-16 15:58:02 -0800
commit90dddeb4cc90093ab42687bbda7cd7a5428355c2 (patch)
tree8aeb109bce2e65c1629719a99d2e97204dd428a1 /macos.c
parent16e03ff86e478eff4f51bee88981c9875ce4f7ee (diff)
downloadsubsurface-90dddeb4cc90093ab42687bbda7cd7a5428355c2.tar.gz
Rename old 'xml' file as 'bak' file when saving
If you use the standard naming convention and end your subsurface filename in ".xml", we will now save away any previous xml file as a "bak" file before writing a new one. This can be useful for: - recovering from mistakes that deleted old dives - seeing what changed (ie you can do things like "diff -u xyz.bak xyz.xml") after doing some operation and saving the result. However, this does only a single level of backups - if you save twice, you will obviously have lost the original. I'd strongly encourage some external backup system in addition to this very simplistic backup. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'macos.c')
-rw-r--r--macos.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/macos.c b/macos.c
index ba461ee4f..aa5036ea2 100644
--- a/macos.c
+++ b/macos.c
@@ -82,6 +82,11 @@ int enumerate_devices (device_callback_t callback, void *userdata)
}
/* NOP wrappers to comform with windows.c */
+int subsurface_rename(const char *path, const char *newpath)
+{
+ return rename(path, newpath);
+}
+
int subsurface_open(const char *path, int oflags, mode_t mode)
{
return open(path, oflags, mode);