diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-05-11 21:04:07 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-11 21:53:29 -0700 |
commit | 4dfaccccb3186f7d223892bc473e7e0148473456 (patch) | |
tree | 546ebcce08b0eb4a4e872035c1f10fe067a5cc25 /divelist-gtk.c | |
parent | a55fa0ea9c0618c5ab65ca9efbbfd2eb363b51dd (diff) | |
download | subsurface-4dfaccccb3186f7d223892bc473e7e0148473456.tar.gz |
Report error string for libsoup connection to divelogs.de
Just reporting a default string that something went wrong is kind of
pointless...
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'divelist-gtk.c')
-rw-r--r-- | divelist-gtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/divelist-gtk.c b/divelist-gtk.c index 1af9ff321..e46fb34b9 100644 --- a/divelist-gtk.c +++ b/divelist-gtk.c @@ -1478,7 +1478,7 @@ static void upload_dives_divelogs(const gboolean selected) } zip_close(zip); if (!divelogde_upload(tempfile, &error)) { - error = strdup(_("Communication error with divelogs.de")); + /* error = strdup(_("Communication error with divelogs.de")); */ type = GTK_MESSAGE_ERROR; } else { /* The upload status XML message should be parsed |