]> diplodocus.org Git - nmh/blobdiff - sbr/seq_setunseen.c
new.c: Order two return statements to match comment.
[nmh] / sbr / seq_setunseen.c
index 49bfda4d8c5a9dff6506c44911fc96727f165bfa..acba9d96853c9c7a99d714565a744883adba5f07 100644 (file)
@@ -27,14 +27,12 @@ seq_setunseen (struct msgs *mp, int seen)
      * Get the list of sequences for Unseen-Sequence
      * and split them.
      */
-    if ((cp = context_find (usequence))) {
-       dp = mh_xstrdup(cp);
-       if (!(ap = brkstring (dp, " ", "\n")) || !*ap) {
-           free (dp);
-           return;
-       }
-    } else {
-       return;
+    if (!(cp = context_find (usequence)))
+        return;
+    dp = mh_xstrdup(cp);
+    if (!(ap = brkstring (dp, " ", "\n")) || !*ap) {
+        free (dp);
+        return;
     }
 
     /*