summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Rocha <lucasr@gnome.org>2007-10-22 22:22:45 +0000
committerLucas Almeida Rocha <lucasr@src.gnome.org>2007-10-22 22:22:45 +0000
commit36fbe777074a006a6f53f5cb11ba666195c1146c (patch)
tree87aa47c2cca80397ae84d608f3747d93eb8fa64d
parent7b02ddc006aade0e1b3b09475ea464f8d10be5f3 (diff)
downloadgconf-36fbe777074a006a6f53f5cb11ba666195c1146c.tar.gz
fix regression that requires a defined default DISPLAY in order to run
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. svn path=/trunk/; revision=2489
-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);