src/protocols/zephyr/ZPending.c

Fri, 26 Nov 2004 02:50:14 +0000

author
Laurent Rineau
date
Fri, 26 Nov 2004 02:50:14 +0000
changeset 10264
a7f48c1faae6
parent 8792
b0645c9dc276
child 11105
842fa517e08c
permissions
-rw-r--r--

[gaim-migrate @ 11410]
On August 30th Laurent Rineau sent a patch to gaim-devel that makes
this change. It should allow proxy.c to compile on systems
where HAVE_GETADDRINFO is undefined.

I haven't tested it, but it looked ok to me. I don't think
"hostname" is a valid variable there.

committer: Mark Doliner <markdoliner@pidgin.im>

/* This file is part of the Project Athena Zephyr Notification System.
 * It contains source for the ZPending function.
 *
 *	Created by:	Robert French
 *
 *	$Source$
 *	$Author: chipx86 $
 *
 *	Copyright (c) 1987 by the Massachusetts Institute of Technology.
 *	For copying and distribution information, see the file
 *	"mit-copyright.h". 
 */
/* $Header$ */

#ifndef lint
static char rcsid_ZPending_c[] = "$Header$";
#endif

#include "internal.h"

int ZPending()
{
	int retval;
	
	if (ZGetFD() < 0) {
		errno = ZERR_NOPORT;
		return (-1);
	}
	
	if ((retval = Z_ReadEnqueue()) != ZERR_NONE) {
		errno = retval;
		return (-1);
	} 
	
	return(ZQLength());
}

mercurial