summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--gconf/gconf-sanity-check.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 612c203b..c0d73bde 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-10-23 Lucas Rocha <lucasr@gnome.org>
+
+ * gconf/gconf-sanity-check.c (main): fix regression that requires a
+ defined default DISPLAY in order to run sanity check program when it
+ shouldn't.
+
2007-10-15 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Post release bump.
diff --git a/gconf/gconf-sanity-check.c b/gconf/gconf-sanity-check.c
index 6f28663e..79815615 100644
--- a/gconf/gconf-sanity-check.c
+++ b/gconf/gconf-sanity-check.c
@@ -46,7 +46,7 @@ main (int argc, char** argv)
g_thread_init (NULL);
context = g_option_context_new (_("- Sanity checks for GConf"));
- g_option_context_add_group (context, gtk_get_option_group (TRUE));
+ g_option_context_add_group (context, gtk_get_option_group (FALSE));
error = NULL;
g_option_context_parse (context, &argc, &argv, &error);