From cc72a606bb9a64a0d251e06c19cf8b8dd7b131ed Mon Sep 17 00:00:00 2001 From: Jan Mulder Date: Tue, 11 Sep 2018 15:29:26 +0200 Subject: [PATCH] cleanup[3/6]: do not save the userid any more Do not save the to be deleted prefences any more. Signed-off-by: Jan Mulder --- core/save-git.c | 8 -------- core/save-xml.c | 3 --- 2 files changed, 11 deletions(-) diff --git a/core/save-git.c b/core/save-git.c index df5abf9e1..7db47dc94 100644 --- a/core/save-git.c +++ b/core/save-git.c @@ -837,13 +837,6 @@ static void save_units(void *_b) prefs.units.vertical_speed_time == SECONDS ? "SECONDS" : "MINUTES"); } -static void save_userid(void *_b) -{ - struct membuffer *b = _b; - if (prefs.save_userid_local) - put_format(b, "userid %30s\n", prefs.userid); -} - static void save_one_device(void *_b, const char *model, uint32_t deviceid, const char *nickname, const char *serial, const char *firmware) { @@ -870,7 +863,6 @@ static void save_settings(git_repository *repo, struct dir *tree) struct membuffer b = { 0 }; put_format(&b, "version %d\n", DATAFORMAT_VERSION); - save_userid(&b); call_for_each_dc(&b, save_one_device, false); cond_put_format(autogroup, &b, "autogroup\n"); save_units(&b); diff --git a/core/save-xml.c b/core/save-xml.c index fea2b1430..653c1f298 100644 --- a/core/save-xml.c +++ b/core/save-xml.c @@ -561,9 +561,6 @@ void save_dives_buffer(struct membuffer *b, const bool select_only) put_format(b, "\n\n", DATAFORMAT_VERSION); - if (prefs.save_userid_local) - put_format(b, " %30s\n", prefs.userid); - /* save the dive computer nicknames, if any */ call_for_each_dc(b, save_one_device, select_only); if (autogroup)