summaryrefslogtreecommitdiffstats
path: root/divelist-gtk.c
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2013-05-01 20:26:38 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-05-02 08:31:03 -0700
commite9ff76429ec34a6671ce4e4165bf84da728475fb (patch)
tree49b45bc374e6b9009b4b988287c51c325941dd12 /divelist-gtk.c
parent3b1c49e439edf06fb4206b2501c9d347421f8e81 (diff)
downloadsubsurface-e9ff76429ec34a6671ce4e4165bf84da728475fb.tar.gz
Do not display error message on cancel
Do not display error message when user cancels upload to divelogs.de. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'divelist-gtk.c')
-rw-r--r--divelist-gtk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/divelist-gtk.c b/divelist-gtk.c
index 8bc836589..7b7fc3999 100644
--- a/divelist-gtk.c
+++ b/divelist-gtk.c
@@ -1487,7 +1487,7 @@ static void upload_dives_divelogs(const gboolean selected)
* And at least the dialog is customized to indicate
* error or success.
*/
- if (strstr(error, "failed"))
+ if (error && strstr(error, "failed"))
type = GTK_MESSAGE_ERROR;
else
type = GTK_MESSAGE_INFO;