diff options
Diffstat (limited to 'debian/patch.collect')
-rw-r--r-- | debian/patch.collect | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/patch.collect b/debian/patch.collect new file mode 100644 index 0000000..6aad2fd --- /dev/null +++ b/debian/patch.collect @@ -0,0 +1,25 @@ +*** collect.c.orig Wed May 20 02:36:05 1998 +--- collect.c Thu May 28 13:29:09 1998 +*************** +*** 353,360 **** + if (*--bp != '\n' || *--bp != '\r') + bp++; + *bp = '\0'; +! if (bitset(H_EOH, chompheader(buf, FALSE, hdrp, e))) +! mstate = MS_BODY; + break; + + case MS_BODY: +--- 353,364 ---- + if (*--bp != '\n' || *--bp != '\r') + bp++; + *bp = '\0'; +! if (bitset(H_EOH, chompheader(buf, FALSE, hdrp, e))) { +! mstate = MS_BODY; +! if (tTd(30, 35)) +! printf("H_EOH, istate=%d, mstate=%d\n", istate, mstate); +! goto nextstate; +! } + break; + + case MS_BODY: |