diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/load-git.c | 5 | ||||
-rw-r--r-- | core/save-git.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/core/load-git.c b/core/load-git.c index e7732a69f..c77d4c05d 100644 --- a/core/load-git.c +++ b/core/load-git.c @@ -293,6 +293,9 @@ static void parse_dive_notrip(char *line, struct membuffer *str, void *_dive) struct dive *dive = _dive; dive->tripflag = NO_TRIP; } +static void parse_site_country(char *line, struct membuffer *str, void *_ds) +{ (void) line; struct dive_site *ds = _ds; ds->country = strdup(mb_cstring(str)); } + static void parse_site_description(char *line, struct membuffer *str, void *_ds) { (void) line; struct dive_site *ds = _ds; ds->description = strdup(mb_cstring(str)); } @@ -994,7 +997,7 @@ static void dive_parser(char *line, struct membuffer *str, void *_dive) struct keyword_action site_action[] = { #undef D #define D(x) { #x, parse_site_ ## x } - D(description), D(geo), D(gps), D(name), D(notes) + D(country), D(description), D(geo), D(gps), D(name), D(notes) }; static void site_parser(char *line, struct membuffer *str, void *_ds) diff --git a/core/save-git.c b/core/save-git.c index 548664239..be0d3920b 100644 --- a/core/save-git.c +++ b/core/save-git.c @@ -961,6 +961,7 @@ static void save_divesites(git_repository *repo, struct dir *tree) } struct membuffer site_file_name = { 0 }; put_format(&site_file_name, "Site-%08x", ds->uuid); + show_utf8(&b, "country ", ds->country, "\n"); show_utf8(&b, "name ", ds->name, "\n"); show_utf8(&b, "description ", ds->description, "\n"); show_utf8(&b, "notes ", ds->notes, "\n"); |