From b72068a49b112492a3bf156aa2e00f3cb6e2aa2a Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sun, 5 Aug 2007 18:46:04 +0000 Subject: [PATCH] (xufldname): Don't bother to catch ... in field 1, because the check for the required join field catches that. --- src/lib/common/xundump.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/common/xundump.c b/src/lib/common/xundump.c index 07376154..ac940d81 100644 --- a/src/lib/common/xundump.c +++ b/src/lib/common/xundump.c @@ -164,8 +164,6 @@ xufldname(FILE *fp, int i) case '.': if (getc(fp) != '.' || getc(fp) != '.') return gripe("Junk in header field %d", i + 1); - if (i == 0) - return gripe("... not allowed in field 1"); if (defellipsis() < 0) return -1; ch = skipfs(fp);