2000-06-16 22:45:32 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989 Regents of the University of California.
|
|
|
|
* All rights reserved. The Berkeley software License Agreement
|
|
|
|
* specifies the terms and conditions for redistribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <popper.h>
|
2000-12-29 04:42:08 +03:00
|
|
|
RCSID("$Id: pop_quit.c,v 1.1.1.2 2000/12/29 01:42:47 assar Exp $");
|
2000-06-16 22:45:32 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* quit: Terminate a POP session
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
pop_quit (POP *p)
|
|
|
|
{
|
|
|
|
/* Release the message information list */
|
|
|
|
if (p->mlp) free (p->mlp);
|
|
|
|
|
|
|
|
return(POP_SUCCESS);
|
|
|
|
}
|