From 58c91ceba8dc3a5a12a80afd58062a5d94e96644 Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Mon, 29 Aug 2011 12:54:05 +0200 Subject: ephy-main: more parameter sanity check Using private profile and app mode at the same time does not make sense. --- src/ephy-main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ephy-main.c b/src/ephy-main.c index a87b4b496..c74b2e7ef 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -361,6 +361,11 @@ main (int argc, exit (1); } + if (private_instance == TRUE && application_mode == TRUE) { + g_print ("Cannot use --private-instance and --application-mode at the same time\n"); + exit (1); + } + if (profile_directory != NULL && private_instance == FALSE && application_mode == FALSE) { g_print ("--profile can only be used in combination with --private-instance or --application-mode\n"); exit (1); -- cgit v1.2.3