X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fm_getfld2.c;h=59204252d7f8c5eec7305138825e097ca0e1c601;hp=a17eb03a82c3960ea5f3d894393af1e9d2cbf53c;hb=a3d849510ecad775e265ab7b6090e85576f48ef7;hpb=d6321964322004b6fc7efbccbc97f92cee905ae7 diff --git a/sbr/m_getfld2.c b/sbr/m_getfld2.c index a17eb03..5920425 100644 --- a/sbr/m_getfld2.c +++ b/sbr/m_getfld2.c @@ -27,7 +27,7 @@ static size_t copyname(char *, char *); /* ** For the states FLD2, BODY2 and FMTERR2 memory is allocated for f->value. -** For the states LENERR2, ERR2 and FILEEOF2 no memory is allocated. +** For the states LENERR2, IOERR2 and FILEEOF2 no memory is allocated. */ enum state m_getfld2(enum state s, struct field *f, FILE *msg) @@ -42,7 +42,7 @@ m_getfld2(enum state s, struct field *f, FILE *msg) if (feof(msg)) { return FILEEOF2; } else { - return ERR2; + return IOERR2; } } @@ -95,7 +95,7 @@ m_getfld2(enum state s, struct field *f, FILE *msg) nchars = getline(&tmpline, &len, msg); if (nchars <= 0) { free(tmpline); - return ERR2; + return IOERR2; } if (nchars >= NAMESZ) { @@ -125,7 +125,7 @@ m_getfld2(enum state s, struct field *f, FILE *msg) if (falted == FAIL) { free(tmpline); - return ERR2; + return IOERR2; } free(tmpline);