summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2007-10-24 12:36:56 +0000
committerAlexander Larsson <alexl@src.gnome.org>2007-10-24 12:36:56 +0000
commit985c9e3cbab9241af403efaa34884a493c5d4cca (patch)
treef262dc1f75eadc45a2418266949e5bd2eeb6b95e /common
parent1d0a4ab07c26e8253d115998495de15a030585ba (diff)
downloadgvfs-985c9e3cbab9241af403efaa34884a493c5d4cca.tar.gz
Actually assign the mount_prefix in the GMountSpec
2007-10-24 Alexander Larsson <alexl@redhat.com> * common/gmountspec.c: (g_mount_spec_set_mount_prefix): Actually assign the mount_prefix in the GMountSpec svn path=/trunk/; revision=992
Diffstat (limited to 'common')
-rw-r--r--common/gmountspec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/gmountspec.c b/common/gmountspec.c
index 13f41299..631aa67c 100644
--- a/common/gmountspec.c
+++ b/common/gmountspec.c
@@ -70,7 +70,7 @@ g_mount_spec_set_mount_prefix (GMountSpec *spec,
const char *mount_prefix)
{
g_free (spec->mount_prefix);
- mount_prefix = g_strdup (mount_prefix);
+ spec->mount_prefix = g_strdup (mount_prefix);
}