aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-06 19:13:50 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-06 19:13:50 +0800
commit97c28e431cce252e5050e95a28d20a351d49094c (patch)
tree9c37e06a757dda1b99d80e25175f7e8e52f0e7d4
parent25be57f4016fd235377bec8d3d7758f7c46a7846 (diff)
downloadgsoc2013-evolution-97c28e431cce252e5050e95a28d20a351d49094c.tar
gsoc2013-evolution-97c28e431cce252e5050e95a28d20a351d49094c.tar.gz
gsoc2013-evolution-97c28e431cce252e5050e95a28d20a351d49094c.tar.bz2
gsoc2013-evolution-97c28e431cce252e5050e95a28d20a351d49094c.tar.lz
gsoc2013-evolution-97c28e431cce252e5050e95a28d20a351d49094c.tar.xz
gsoc2013-evolution-97c28e431cce252e5050e95a28d20a351d49094c.tar.zst
gsoc2013-evolution-97c28e431cce252e5050e95a28d20a351d49094c.zip
call g_build_filename, not g_build_path.
2002-11-06 Chris Toshok <toshok@ximian.com> * backend/ebook/e-book-util.c (e_book_expand_uri): call g_build_filename, not g_build_path. svn path=/trunk/; revision=18600
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/backend/ebook/e-book-util.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 886fce8775..9760972fad 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,10 @@
2002-11-06 Chris Toshok <toshok@ximian.com>
+ * backend/ebook/e-book-util.c (e_book_expand_uri): call
+ g_build_filename, not g_build_path.
+
+2002-11-06 Chris Toshok <toshok@ximian.com>
+
* backend/ebook/e-destination.[ch]: fix the gnome-xml headers.
2002-11-06 Chris Toshok <toshok@ximian.com>
diff --git a/addressbook/backend/ebook/e-book-util.c b/addressbook/backend/ebook/e-book-util.c
index 38e8a4f166..c27ebff497 100644
--- a/addressbook/backend/ebook/e-book-util.c
+++ b/addressbook/backend/ebook/e-book-util.c
@@ -53,7 +53,7 @@ e_book_expand_uri (const char *uri)
char *ret_val;
char *file_name;
- file_name = g_build_path(uri + offset, "addressbook.db", NULL);
+ file_name = g_build_filename(uri + offset, "addressbook.db", NULL);
ret_val = g_strdup_printf("file://%s", file_name);
g_free(file_name);
return ret_val;