diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-17 17:44:12 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-17 17:44:12 +0000 |
commit | aec15b99bf6b340227895ecfa6136e9d638c701a (patch) | |
tree | 54ea8d79169dd127d239a7f304c1007eb473ea6f /pop2.c | |
parent | 6acb0b4730875ea953f04df5fa6c5680fd98ca09 (diff) | |
download | fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.tar.gz fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.tar.bz2 fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.zip |
Remove all those obnoxious block comments.
svn path=/trunk/; revision=345
Diffstat (limited to 'pop2.c')
-rw-r--r-- | pop2.c | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -1,16 +1,11 @@ -/* Copyright 1996 by Eric S. Raymond +/* + * pop2.c -- POP@ protocol methods + * + * Copyright 1996 by Eric S. Raymond * All rights reserved. * For license terms, see the file COPYING in this directory. */ -/*********************************************************************** - module: pop2.c - project: fetchmail - programmer: Eric S. Raymond - description: POP2 method code. - - ***********************************************************************/ - #include <config.h> #include <stdio.h> #include "socket.h" @@ -143,7 +138,10 @@ const static struct method pop2 = }; int doPOP2 (queryctl) +/* retrieve messages using POP2 */ struct hostrec *queryctl; { return(do_protocol(queryctl, &pop2)); } + +/* pop2.c ends here */ |