Really set the path if tag is CAMEL_SERVICE_PATH.
authorChristian Kellner <gicmo@xatom.net>
Mon, 21 Jun 2004 15:48:06 +0000 (15:48 +0000)
committerJeffrey Stedfast <fejj@src.gnome.org>
Mon, 21 Jun 2004 15:48:06 +0000 (15:48 +0000)
2004-06-21  Christian Kellner <gicmo@xatom.net>

* camel-service.c (service_setv): Really set the path if tag is
CAMEL_SERVICE_PATH.

camel/ChangeLog
camel/camel-service.c

index 6525fc4..c316877 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-21  Christian Kellner <gicmo@xatom.net>
+
+       * camel-service.c (service_setv): Really set the path if tag is 
+       CAMEL_SERVICE_PATH.
+
 2004-06-21  Jeffrey Stedfast  <fejj@novell.com>
 
        * camel-mime-filter-enriched.c (enriched_to_html): Fixed a number
index 229f0d2..d108f12 100644 (file)
@@ -193,7 +193,7 @@ service_setv (CamelObject *object, CamelException *ex, CamelArgV *args)
                } else if (tag == CAMEL_SERVICE_PATH) {
                        /* set the path */
                        if (strcmp (url->path, args->argv[i].ca_str) != 0) {
-                               camel_url_set_host (url, args->argv[i].ca_str);
+                               camel_url_set_path (url, args->argv[i].ca_str);
                                reconnect = TRUE;
                        }
                } else {