diff options
-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 */ |