diff options
Diffstat (limited to 'save-xml.c')
-rw-r--r-- | save-xml.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/save-xml.c b/save-xml.c index 91ead9f1d..47a8a7ebb 100644 --- a/save-xml.c +++ b/save-xml.c @@ -153,6 +153,8 @@ static void save_overview(FILE *f, struct dive *dive) save_temperatures(f, dive); show_duration(f, dive->surfacetime, " <surfacetime>", "</surfacetime>\n"); show_utf8(f, dive->location, " <location>","</location>\n"); + show_utf8(f, dive->divemaster, " <divemaster>","</divemaster>\n"); + show_utf8(f, dive->buddy, " <buddy>","</buddy>\n"); show_utf8(f, dive->notes, " <notes>","</notes>\n"); } |