diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-06 19:13:50 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-06 19:13:50 +0800 |
commit | 97c28e431cce252e5050e95a28d20a351d49094c (patch) | |
tree | 9c37e06a757dda1b99d80e25175f7e8e52f0e7d4 | |
parent | 25be57f4016fd235377bec8d3d7758f7c46a7846 (diff) | |
download | gsoc2013-evolution-97c28e431cce252e5050e95a28d20a351d49094c.tar.gz 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/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/backend/ebook/e-book-util.c | 2 |
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; |