diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-10-10 05:33:55 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-10-10 05:33:55 +0800 |
commit | d22a95c092b87ad574dadaa91167912a963aa528 (patch) | |
tree | 861b79f872488d4eaaad877c954fa3c63f5259db /lib | |
parent | bc9ded62b951abe03f63a08cf02dfdd1409b860e (diff) | |
download | gsoc2013-epiphany-d22a95c092b87ad574dadaa91167912a963aa528.tar gsoc2013-epiphany-d22a95c092b87ad574dadaa91167912a963aa528.tar.gz gsoc2013-epiphany-d22a95c092b87ad574dadaa91167912a963aa528.tar.bz2 gsoc2013-epiphany-d22a95c092b87ad574dadaa91167912a963aa528.tar.lz gsoc2013-epiphany-d22a95c092b87ad574dadaa91167912a963aa528.tar.xz gsoc2013-epiphany-d22a95c092b87ad574dadaa91167912a963aa528.tar.zst gsoc2013-epiphany-d22a95c092b87ad574dadaa91167912a963aa528.zip |
Search the needle in the haystack, not the other way 'round.
2005-10-09 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-debug.c:
Search the needle in the haystack, not the other way 'round.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ephy-debug.c b/lib/ephy-debug.c index 33eaf803c..be8af70c7 100644 --- a/lib/ephy-debug.c +++ b/lib/ephy-debug.c @@ -84,7 +84,7 @@ log_module (const gchar *log_domain, for (i = 0; ephy_log_modules[i] != NULL; i++) { - if (strstr (ephy_log_modules [i], message) != NULL) + if (strstr (message, ephy_log_modules [i]) != NULL) { should_log = TRUE; break; |