aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-http-stream.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-04-17 09:25:28 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-04-17 09:25:28 +0800
commitfc281a966c29421c896746d784a6f1393fe37f3f (patch)
treec6c576c8372840c627636aa396f075a171d25c9c /camel/camel-http-stream.c
parentb06b0051c5fee1c0eafa87f164fe0b8f4e27e5ef (diff)
downloadgsoc2013-evolution-fc281a966c29421c896746d784a6f1393fe37f3f.tar
gsoc2013-evolution-fc281a966c29421c896746d784a6f1393fe37f3f.tar.gz
gsoc2013-evolution-fc281a966c29421c896746d784a6f1393fe37f3f.tar.bz2
gsoc2013-evolution-fc281a966c29421c896746d784a6f1393fe37f3f.tar.lz
gsoc2013-evolution-fc281a966c29421c896746d784a6f1393fe37f3f.tar.xz
gsoc2013-evolution-fc281a966c29421c896746d784a6f1393fe37f3f.tar.zst
gsoc2013-evolution-fc281a966c29421c896746d784a6f1393fe37f3f.zip
Get rid of an unused variable.
2002-04-16 Jeffrey Stedfast <fejj@ximian.com> * camel-filter-driver.c (camel_filter_driver_filter_folder): Get rid of an unused variable. * providers/smtp/camel-smtp-transport.c (smtp_helo): Use camel_gethostbyaddr since gethostbyaddr is not reentrant. * camel-http-stream.c (http_connect): Updated after the rename of camel_get_host_byname. * camel-service.c (camel_gethostbyname): Renamed. (camel_gethostbyaddr): New cancellable/reentrant version of gethostbyaddr. svn path=/trunk/; revision=16484
Diffstat (limited to 'camel/camel-http-stream.c')
-rw-r--r--camel/camel-http-stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-http-stream.c b/camel/camel-http-stream.c
index bc9aa33508..44c7601e82 100644
--- a/camel/camel-http-stream.c
+++ b/camel/camel-http-stream.c
@@ -188,7 +188,7 @@ http_connect (CamelService *service, CamelURL *url)
return NULL;
}
- host = camel_get_host_byname (url->host, NULL);
+ host = camel_gethostbyname (url->host, NULL);
if (!host) {
errno = EHOSTUNREACH;
return NULL;