changeset 4367:101fa831f52f

[gaim-migrate @ 4633] G_UNLIKELY((Me+HeidiKlum) == POSSIBLE) committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 20 Jan 2003 20:01:57 +0000
parents 7ba9b56a8796
children 9c83a731a3ea
files src/proxy.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/proxy.c	Mon Jan 20 19:26:56 2003 +0000
+++ b/src/proxy.c	Mon Jan 20 20:01:57 2003 +0000
@@ -265,14 +265,14 @@
 		release_dns_child(req);	
 		return;
 	}
-	if(G_LIKELY(rc>0)) {
+	if(rc>0) {
 		rc=read(req->fd_out, &addrlen, sizeof(addrlen));
-		if(G_LIKELY(rc>0)) {
+		if(rc>0) {
 			addr=g_malloc(addrlen);
 			rc=read(req->fd_out, addr, addrlen);
 		}
 	}
-	if(G_UNLIKELY(rc==-1)) {
+	if(rc==-1) {
 		char message[1024];
 		g_snprintf(message, sizeof(message), "Error reading from DNS child: %s",strerror(errno));
 		debug_printf("%s\n",message);
@@ -283,7 +283,7 @@
 		number_of_dns_children--;
 		return;
 	}
-	if(G_UNLIKELY(rc==0)) {
+	if(rc==0) {
 		char message[1024];
 		g_snprintf(message, sizeof(message), "EOF reading from DNS child");
 		close(req->fd_out);