diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-06-20 21:07:36 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-08-14 10:22:41 -0700 |
commit | c840ab43323f351043e7f74502f933ae46d3ea9e (patch) | |
tree | faf08b80c67a9146d89ad41f7579a3788a64e8b7 /core/load-git.c | |
parent | 777cbd9cfe7cd026315bfcbac15126512a016a90 (diff) | |
download | subsurface-c840ab43323f351043e7f74502f933ae46d3ea9e.tar.gz |
Fill in divecomputer serial number and firmware version on loading
We have the serial number and firmware version fields in "struct
divecomputer", but we don't actually fill them in when loading the data
from git or xml, because we save all that information in the separate
device table instead.
But in order to always have the serial number associated with a device,
let's make sure to fill those fields in. It won't hurt, and this way we
have the information available whether we just loaded the dive from a
file, or imported it from the dive computer. One less semantic
difference to worry about.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/load-git.c')
-rw-r--r-- | core/load-git.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/load-git.c b/core/load-git.c index 0fe2c6353..670658d1b 100644 --- a/core/load-git.c +++ b/core/load-git.c @@ -643,7 +643,7 @@ static void parse_dc_date(char *line, struct membuffer *str, void *_dc) { (void) str; struct divecomputer *dc = _dc; update_date(&dc->when, line); } static void parse_dc_deviceid(char *line, struct membuffer *str, void *_dc) -{ (void) str; struct divecomputer *dc = _dc; dc->deviceid = get_hex(line); } +{ (void) str; struct divecomputer *dc = _dc; set_dc_deviceid(dc, get_hex(line)); } static void parse_dc_diveid(char *line, struct membuffer *str, void *_dc) { (void) str; struct divecomputer *dc = _dc; dc->diveid = get_hex(line); } |