--- gnome-libs-1.0.54.orig/libgnomeui/gnome-init.c Thu Oct 28 05:40:46 1999 +++ gnome-libs-1.0.54/libgnomeui/gnome-init.c Thu Nov 18 01:26:53 1999 @@ -491,8 +491,8 @@ /* automagically parse all the gtkrc files for us. * * Parse: - * $gnomedatadir/gtkrc - * $gnomedatadir/$apprc + * $gnomedatadir/gnome/gtkrc + * $gnomedatadir/gnome/$apprc * ~/.gnome/gtkrc * ~/.gnome/$apprc * @@ -525,14 +525,14 @@ if (!found) buf = g_strdup (command); - apprc = g_malloc (strlen(buf) + 3); - g_snprintf(apprc, strlen(buf) + 3, "%src", buf); + apprc = g_malloc (strlen(buf) + 9); + g_snprintf(apprc, strlen(buf) + 9, "gnome/%src", buf); g_free(buf); /* /gtkrc */ - file = gnome_unconditional_datadir_file("gtkrc"); + file = gnome_unconditional_datadir_file("gnome/gtkrc"); if (file){ gtk_rc_add_default_file (file); g_free (file);