change the separtor used between uri and book name to ';' from '?'
authorSivaiah Nallagatla <snallagatla@novell.com>
Wed, 21 Apr 2004 12:27:24 +0000 (12:27 +0000)
committerSivaiah Nallagatla <siva@src.gnome.org>
Wed, 21 Apr 2004 12:27:24 +0000 (12:27 +0000)
2004-04-21  Sivaiah Nallagatla <snallagatla@novell.com>
        * backends/groupwise/e-book-backend-groupwise.c
        (e_book_backend_groupwise_load_source) : change the separtor used between uri
        and book name to ';' from '?'

addressbook/ChangeLog
addressbook/backends/groupwise/e-book-backend-groupwise.c

index f505c3b..aae9978 100644 (file)
@@ -1,3 +1,8 @@
+2004-04-21  Sivaiah Nallagatla <snallagatla@novell.com>
+       * backends/groupwise/e-book-backend-groupwise.c 
+       (e_book_backend_groupwise_load_source) : change the separtor used between uri
+        and book name to ';' from '?'
 2004-04-20  Chris Toshok  <toshok@ximian.com>
 
        * tests/ebook/Makefile.am: add test-nonexistent-id and test-query.
index f056630..7ffd29d 100644 (file)
@@ -1685,7 +1685,7 @@ e_book_backend_groupwise_load_source (EBookBackend           *backend,
        uri =  e_source_get_uri (source);
        if(uri == NULL)
                return  GNOME_Evolution_Addressbook_OtherError;
-       tokens = g_strsplit (uri, "?", 2);
+       tokens = g_strsplit (uri, ";", 2);
        if (tokens[0])
                uri = g_strdup (tokens[0]);