diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-09-25 02:59:42 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-09-25 02:59:42 +0800 |
commit | 2517cb37a8b3962e654b9500b301c1f51b1536a5 (patch) | |
tree | 080446f15ee9197de2c0c07ee67760cb42b3a040 | |
parent | beacff23d82ef91297af7fa4860b56249dbaa49b (diff) | |
download | gsoc2013-epiphany-2517cb37a8b3962e654b9500b301c1f51b1536a5.tar gsoc2013-epiphany-2517cb37a8b3962e654b9500b301c1f51b1536a5.tar.gz gsoc2013-epiphany-2517cb37a8b3962e654b9500b301c1f51b1536a5.tar.bz2 gsoc2013-epiphany-2517cb37a8b3962e654b9500b301c1f51b1536a5.tar.lz gsoc2013-epiphany-2517cb37a8b3962e654b9500b301c1f51b1536a5.tar.xz gsoc2013-epiphany-2517cb37a8b3962e654b9500b301c1f51b1536a5.tar.zst gsoc2013-epiphany-2517cb37a8b3962e654b9500b301c1f51b1536a5.zip |
Print a warning when starting ephy in --server mode; using server mode is
2003-09-24 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-main.c: (ephy_main_start):
Print a warning when starting ephy in --server mode;
using server mode is known to crash on logout from
gnome session, so use at your own risk. [Bug #123047].
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/ephy-main.c | 1 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,11 @@ +2003-09-24 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-main.c: (ephy_main_start): + + Print a warning when starting ephy in --server mode; + using server mode is known to crash on logout from + gnome session, so use at your own risk. [Bug #123047]. + 2003-09-24 Xan Lopez <xan@masilla.org> * configure.in: diff --git a/src/ephy-main.c b/src/ephy-main.c index 22c33b695..f96d9c344 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -213,6 +213,7 @@ ephy_main_start (gpointer data) /* Server mode */ else if (ephy_server_mode) { + g_warning ("Server mode is deprecated and known to crash when logging out. Use at your own risk!\n"); g_object_ref (G_OBJECT(ephy_shell)); } /* Launch the bookmarks editor */ |