src/protocols/zephyr/ZFreeNot.c

Tue, 09 Mar 2004 02:50:52 +0000

author
Kevin Stange <kstange@pidgin.im>
date
Tue, 09 Mar 2004 02:50:52 +0000
changeset 8413
92b9a04b2fd6
parent 2086
007508451e2c
child 8792
b0645c9dc276
permissions
-rw-r--r--

[gaim-migrate @ 9143]
Aliases are now shown alongside the screen name in the message queue
window. Patch by Kevin Stange.

committer: Christian Hammond <chipx86@chipx86.com>

/* This file is part of the Project Athena Zephyr Notification System.
 * It contains source for the ZFreeNotice function.
 *
 *	Created by:	Robert French
 *
 *	$Source$
 *	$Author: warmenhoven $
 *
 *	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_ZFreeNotice_c[] = "$Header$";
#endif

#include <internal.h>

Code_t ZFreeNotice(notice)
    ZNotice_t *notice;
{
    free(notice->z_packet);
    return 0;
}

mercurial