diff options
author | Ray Strode <rstrode@redhat.com> | 2011-06-28 12:51:51 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2011-06-28 12:51:51 -0400 |
commit | fc6ee4aa6d71d2c448a9b62aca24ba318163c590 (patch) | |
tree | 215de00c5920d73919a7f530aa0d2ee7f9a47e7d /gui | |
parent | 8c5f0a79ffe0ceb876517802f5303004f3d5bd0f (diff) | |
download | gdm-fc6ee4aa6d71d2c448a9b62aca24ba318163c590.tar.gz |
common: don't tank on criticals
Tiny (or not so tiny) bugs in components below GDM in the stack
can lead to critical warnings.
In development releases, GDM by default will crash when encountering
a critical warning.
Losing the login screen is a big deal. We shouldn't automatically subject
our users to "can't log in" in order to highlight bugs in development
releases.
This commit removes fatal criticals by default.
Diffstat (limited to 'gui')
-rw-r--r-- | gui/simple-chooser/chooser-main.c | 2 | ||||
-rw-r--r-- | gui/simple-chooser/gdm-host-chooser.c | 2 | ||||
-rw-r--r-- | gui/simple-greeter/greeter-main.c | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/gui/simple-chooser/chooser-main.c b/gui/simple-chooser/chooser-main.c index ac1edd63..2978a238 100644 --- a/gui/simple-chooser/chooser-main.c +++ b/gui/simple-chooser/chooser-main.c @@ -233,8 +233,6 @@ main (int argc, char *argv[]) setlocale (LC_ALL, ""); - gdm_set_fatal_warnings_if_unstable (); - g_type_init (); gdm_log_init (); diff --git a/gui/simple-chooser/gdm-host-chooser.c b/gui/simple-chooser/gdm-host-chooser.c index 371ba283..1f5f9c60 100644 --- a/gui/simple-chooser/gdm-host-chooser.c +++ b/gui/simple-chooser/gdm-host-chooser.c @@ -232,8 +232,6 @@ main (int argc, char *argv[]) setlocale (LC_ALL, ""); - gdm_set_fatal_warnings_if_unstable (); - g_type_init (); gdm_log_init (); diff --git a/gui/simple-greeter/greeter-main.c b/gui/simple-greeter/greeter-main.c index aa165faa..a2c533e9 100644 --- a/gui/simple-greeter/greeter-main.c +++ b/gui/simple-greeter/greeter-main.c @@ -252,8 +252,6 @@ main (int argc, char *argv[]) setlocale (LC_ALL, ""); - gdm_set_fatal_warnings_if_unstable (); - g_type_init (); gdm_profile_start ("Initializing settings client"); |