]> diplodocus.org Git - nmh/blobdiff - sbr/seq_list.c
Print port number in the connection error message
[nmh] / sbr / seq_list.c
index aff9bacdf3ce2f3ecd39883770aa34c3f036a220..0aef35e369730d779e5091214fcbb78fa1726c29 100644 (file)
@@ -1,6 +1,4 @@
-
-/*
- * seq_list.c -- Get all messages in a sequence and return them
+/* seq_list.c -- Get all messages in a sequence and return them
  *            -- as a space separated list of message ranges.
  *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
@@ -8,8 +6,11 @@
  * complete copyright information.
  */
 
-#include <h/mh.h>
-#include <h/utils.h>
+#include "h/mh.h"
+#include "m_name.h"
+#include "seq_list.h"
+#include "seq_getnum.h"
+#include "h/utils.h"
 
 /* allocate this much buffer space at a time */
 #define MAXBUFFER 1024
@@ -40,9 +41,9 @@ seq_list(struct msgs *mp, char *seqname)
     if (!strcmp (current, seqname)) {
        if (mp->curmsg) {       
            snprintf(buffer, len, "%s", m_name(mp->curmsg));
-           return (buffer);
+           return buffer;
        }
-        return (NULL);
+        return NULL;
     }
 
     /* If the folder is empty, just return NULL */
@@ -102,5 +103,5 @@ seq_list(struct msgs *mp, char *seqname)
            bp += strlen(bp);
        }
     }
-    return (bp > buffer? buffer : NULL);
+    return bp > buffer ? buffer : NULL;
 }