diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 21:25:59 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 21:25:59 +0000 |
commit | 8003ba152f15aa82aaadd76fcd6b669cc0cc9981 (patch) | |
tree | 7842527232644d8f0fc76639a38e9596a910d381 /mail/popd/files/patch-lib__funcs.c | |
parent | Convert to USES=libtool and add INSTALL_TARGET=install-strip (diff) |
Remove non staged ports without pending PR from ma*
Diffstat (limited to 'mail/popd/files/patch-lib__funcs.c')
-rw-r--r-- | mail/popd/files/patch-lib__funcs.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/mail/popd/files/patch-lib__funcs.c b/mail/popd/files/patch-lib__funcs.c deleted file mode 100644 index ff835dd6eb14..000000000000 --- a/mail/popd/files/patch-lib__funcs.c +++ /dev/null @@ -1,20 +0,0 @@ -$FreeBSD$ - ---- lib/funcs.c.orig Mon Mar 3 21:10:19 2003 -+++ lib/funcs.c Wed Oct 15 11:18:01 2003 -@@ -198,11 +198,11 @@ - len = vsnprintf(p, MAXBUFLEN - (buffer - p), format, pvar); - } - va_end(pvar); -- if (p - buffer + len + 3 > MAXBUFLEN) { -- xwrite(buffer, p - buffer + len); -+ p += len; -+ if (p - buffer + 3 > MAXBUFLEN) { -+ xwrite(buffer, p - buffer); - p = buffer; - } -- p += len; - *p++ = '\r'; - *p++ = '\n'; - if (flag == SEND_FLUSH) { - |