src/protocols/zephyr/ZClosePort.c

Thu, 14 Jul 2005 02:19:01 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Thu, 14 Jul 2005 02:19:01 +0000
changeset 11105
842fa517e08c
parent 8792
b0645c9dc276
permissions
-rw-r--r--

[gaim-migrate @ 13153]
CVS keywords are making my life difficult right now. I know I could change the keyword expansion somehow, but I don't see the use for them here, so I'm taking the easy (and IMO, better long-term) approach of removing them. My apologies for the commit spam.

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

#include "internal.h"

Code_t ZClosePort()
{
    if (__Zephyr_fd >= 0 && __Zephyr_open)
	(void) close(__Zephyr_fd);

    __Zephyr_fd = -1;
    __Zephyr_open = 0;
	
    return (ZERR_NONE);
}

mercurial