diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-03-23 21:24:54 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-03-23 21:24:54 +0800 |
commit | 2316eb86a54a250a8fd01c72c477159e4fbb7556 (patch) | |
tree | f8e733d837d558f54da8559f1c67fbaf894b1d11 | |
parent | de31ba4197b2e6b51b7077815ee8f6bb834ef942 (diff) | |
download | gsoc2013-epiphany-2316eb86a54a250a8fd01c72c477159e4fbb7556.tar gsoc2013-epiphany-2316eb86a54a250a8fd01c72c477159e4fbb7556.tar.gz gsoc2013-epiphany-2316eb86a54a250a8fd01c72c477159e4fbb7556.tar.bz2 gsoc2013-epiphany-2316eb86a54a250a8fd01c72c477159e4fbb7556.tar.lz gsoc2013-epiphany-2316eb86a54a250a8fd01c72c477159e4fbb7556.tar.xz gsoc2013-epiphany-2316eb86a54a250a8fd01c72c477159e4fbb7556.tar.zst gsoc2013-epiphany-2316eb86a54a250a8fd01c72c477159e4fbb7556.zip |
Fix stupid typos. Fixes bug #171197; thanks to Jean-François Rameau for
2005-03-23 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/MozDownload.cpp:
Fix stupid typos. Fixes bug #171197; thanks to Jean-François Rameau
for finding the cause.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/mozilla/MozDownload.cpp | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2005-03-23 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/MozDownload.cpp: + + Fix stupid typos. Fixes bug #171197; thanks to Jean-François Rameau + for finding the cause. + 2005-03-21 Christian Persch <chpe@cvs.gnome.org> * configure.ac: diff --git a/embed/mozilla/MozDownload.cpp b/embed/mozilla/MozDownload.cpp index 081a5d5d0..669455615 100644 --- a/embed/mozilla/MozDownload.cpp +++ b/embed/mozilla/MozDownload.cpp @@ -403,11 +403,11 @@ MozDownload::OnStateChange (nsIWebProgress *aWebProgress, nsIRequest *aRequest, /* HACK we use the application description to decide if we have to open the saved file */ - if (g_str_has_suffix (cDesc.get(), "gnome-default:")) + if (g_str_has_prefix (cDesc.get(), "gnome-default:")) { /* Format gnome-default:<usertime>:<helperapp id> */ char **str = g_strsplit (cDesc.get(), ":", -1); - g_return_val_if_fail (g_strv_length (str) != 3, NS_ERROR_FAILURE); + g_return_val_if_fail (g_strv_length (str) == 3, NS_ERROR_FAILURE); char *end; guint32 user_time = strtoul (str[1], &end, 0); |