Merge from vendor branch GDB:
[dragonfly.git] / crypto / heimdal-0.6.3 / appl / popper / pop_quit.c
1 /*
2  * Copyright (c) 1989 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  */
6
7 #include <popper.h>
8 RCSID("$Id: pop_quit.c,v 1.7 1996/11/19 22:48:30 assar Exp $");
9
10 /* 
11  *  quit:   Terminate a POP session
12  */
13
14 int
15 pop_quit (POP *p)
16 {
17     /*  Release the message information list */
18     if (p->mlp) free (p->mlp);
19
20     return(POP_SUCCESS);
21 }