Remove unused code
[mmh] / sbr / m_getfld2.c
index cd1c6be..956a556 100644 (file)
@@ -10,7 +10,6 @@
 #include <h/utils.h>
 #include <stdio.h>
 #include <ctype.h>
-#include <stdbool.h>
 
 
 enum threestate {
@@ -24,7 +23,7 @@ enum threestate {
 */
 static enum threestate is_falted(FILE *);
 static size_t copyname(char *, char *);
-static bool is_separator(char *);
+static boolean is_separator(char *);
 
 
 /*
@@ -97,7 +96,7 @@ m_getfld2(enum state s, struct field *f, FILE *msg)
                        f->valuelen = nchars;
                }
 
-               while (ret == FLD2 && (falted = is_falted(msg)) == B_TRUE) {
+               while ((ret == FLD2 || ret == LENERR2) && (falted = is_falted(msg)) == B_TRUE) {
                        nchars = getline(&tmpline, &len, msg);
                        if (nchars <= 0) {
                                free(tmpline);
@@ -146,10 +145,6 @@ m_getfld2(enum state s, struct field *f, FILE *msg)
                        }
                }
 
-               if (nchars >= NAMESZ) {
-                       ret = LENERR2;
-               }
-
                free(f->value);
                f->value = tmpline;
                f->valuelen = nchars;
@@ -204,7 +199,7 @@ copyname(char *dst, char *src)
        }
 
        len = sep - src;
-       if (len >= NAMESZ) {
+       if (len >= NAMESZ - 1) {
                return 0;
        }
 
@@ -214,7 +209,7 @@ copyname(char *dst, char *src)
        return strlen(dst);
 }
 
-static bool
+static boolean
 is_separator(char *line)
 {
        /*
@@ -225,7 +220,7 @@ is_separator(char *line)
                line++;
        }
        if (strcmp("\n", line) == 0 || strcmp("\r\n", line) == 0 ) {
-               return true;
+               return TRUE;
        }
-       return false;
+       return FALSE;
 }