aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-17 17:44:12 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-17 17:44:12 +0000
commitaec15b99bf6b340227895ecfa6136e9d638c701a (patch)
tree54ea8d79169dd127d239a7f304c1007eb473ea6f /imap.c
parent6acb0b4730875ea953f04df5fa6c5680fd98ca09 (diff)
downloadfetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.tar.gz
fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.tar.bz2
fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.zip
Remove all those obnoxious block comments.
svn path=/trunk/; revision=345
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c21
1 files changed, 5 insertions, 16 deletions
diff --git a/imap.c b/imap.c
index 2c335118..372e43e6 100644
--- a/imap.c
+++ b/imap.c
@@ -1,28 +1,17 @@
-/* Copyright 1996 by Eric S. Raymond
+/*
+ * imap.c -- IMAP2bis protocol methods
+ *
+ * Copyright 1996 by Eric S. Raymond
* All rights reserved.
* For license terms, see the file COPYING in this directory.
*/
-/***********************************************************************
- module: imap.c
- project: fetchmail
- programmer: Eric S. Raymond
- description: IMAP client code
-
- ***********************************************************************/
-
#include <config.h>
#include <stdio.h>
#include <string.h>
#include "socket.h"
#include "fetchmail.h"
-/*********************************************************************
-
- Method declarations for IMAP
-
- *********************************************************************/
-
static int count, seen;
int imap_ok (socket, argbuf)
@@ -201,4 +190,4 @@ struct hostrec *queryctl;
return(do_protocol(queryctl, &imap));
}
-
+/* imap.c ends here */