22575: Remove extra ;, From Dennis Davis.
[heimdal.git] / appl / popper / pop_quit.c
blob29ed657f267ef92bf7a3228772b2a94a83a8efd1
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 */
7 #include <popper.h>
8 RCSID("$Id$");
10 /*
11 * quit: Terminate a POP session
14 int
15 pop_quit (POP *p)
17 /* Release the message information list */
18 if (p->mlp) free (p->mlp);
20 return(POP_SUCCESS);