src/protocols/zephyr/ZCmpUIDP.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 ZCompareUIDPred 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_ZCompareUIDPred_c[] = "$Header$";
#endif

#include "internal.h"

int ZCompareUIDPred(notice, uid)
    ZNotice_t *notice;
    void *uid;
{
    return (ZCompareUID(&notice->z_uid, (ZUnique_Id_t *) uid));
}

int ZCompareMultiUIDPred(notice, uid)
    ZNotice_t *notice;
    void *uid;
{
    return (ZCompareUID(&notice->z_multiuid, (ZUnique_Id_t *) uid));
}

mercurial