aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-main.c
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-09-03 22:41:25 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2012-09-04 02:37:15 +0800
commit95eb18e603accc3dd23c32c9dfbdf79b1723d391 (patch)
treefaad294b055bdff5766a16aeda58a0fda228a688 /src/ephy-main.c
parent1afb0171665b4234ceb57f073a0834b6dc3e005d (diff)
downloadgsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.gz
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.bz2
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.lz
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.xz
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.zst
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.zip
ephy-profile-utils: add a profile_dir parameter to ephy_profile_utils_do_migration()
This is passed further on to the migrator process. Right now this is unused. https://bugzilla.gnome.org/show_bug.cgi?id=681679
Diffstat (limited to 'src/ephy-main.c')
-rw-r--r--src/ephy-main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c
index 60a0e616f..4ea621afe 100644
--- a/src/ephy-main.c
+++ b/src/ephy-main.c
@@ -392,7 +392,7 @@ main (int argc,
/* TODO: we want to migrate each WebApp profile too. */
if (!private_instance && !application_mode) {
/* If the migration fails we don't really want to continue. */
- if (!ephy_profile_utils_do_migration (-1, FALSE)) {
+ if (!ephy_profile_utils_do_migration ((const char *)profile_directory, -1, FALSE)) {
g_print ("Failed to run the migrator process, Web will now abort.");
exit (1);
}