summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib-src/b2m.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib-src/b2m.c b/lib-src/b2m.c
index 5ae81949aed..d455de25f8e 100644
--- a/lib-src/b2m.c
+++ b/lib-src/b2m.c
@@ -36,8 +36,9 @@ int header = FALSE, printing;
long ltoday;
char from[256], labels[256], data[256], *p, *today;
-main(argc, argv)
-char **argv;
+main (argc, argv)
+ int argc;
+ char **argv;
{
ltoday = time(0);
today = ctime(&ltoday);
@@ -54,8 +55,13 @@ char **argv;
puts(data);
while (gets(data)) {
+
+#if 0
+ /* What was this for? Does somebody have something against blank
+ lines? */
if (!strcmp(data, ""))
exit(0);
+#endif
if (!strcmp(data, "*** EOOH ***") && !printing) {
printing = header = TRUE;