Fix typo when checking if file + module_suffix exists. (Miroslaw
authorOwen Taylor <otaylor@redhat.com>
Sun, 17 Feb 2002 23:17:52 +0000 (23:17 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Sun, 17 Feb 2002 23:17:52 +0000 (23:17 +0000)
Sun Feb 17 18:15:22 2002  Owen Taylor  <otaylor@redhat.com>

        * gmodule.c (g_module_open): Fix typo when checking
        if file + module_suffix exists. (Miroslaw Dobrzanski-Neumann,
        #71801)

gmodule/ChangeLog
gmodule/gmodule.c

index 298a07b0190f725ea763d604633d12aaec4d1c18..dbeb5405e48e8b6a27284bb19c800052f93896d8 100644 (file)
@@ -1,3 +1,9 @@
+Sun Feb 17 18:15:22 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gmodule.c (g_module_open): Fix typo when checking
+       if file + module_suffix exists. (Miroslaw Dobrzanski-Neumann,
+       #71801)
+
 2001-11-24  Tor Lillqvist  <tml@iki.fi>
 
        * Makefile.am: Remove rule for testgmodule.exp, too.
index 25bf18aa36c5b90095407cea32cc1be30cee542c..977a61994ad751ea4bd9dc316c02cc4acccd8d03 100644 (file)
@@ -338,7 +338,7 @@ g_module_open (const gchar    *file_name,
   if (!name)
     {
       name = g_strconcat (file_name, "." G_MODULE_SUFFIX, NULL);
-      if (!g_file_test (file_name, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR))
+      if (!g_file_test (name, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR))
        {
          g_free (name);
          name = NULL;