diff options
author | pav <pav@FreeBSD.org> | 2005-07-30 00:52:06 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-07-30 00:52:06 +0800 |
commit | be1f650fbb394915133734138a952cb501afd02a (patch) | |
tree | 5044fdc291f65859b66a7574e688c8aedff5a02f /net/rsync/files | |
parent | 9f1fd5ee84211c030fa432400ce2d4ca013425d7 (diff) | |
download | freebsd-ports-gnome-be1f650fbb394915133734138a952cb501afd02a.tar.gz freebsd-ports-gnome-be1f650fbb394915133734138a952cb501afd02a.tar.zst freebsd-ports-gnome-be1f650fbb394915133734138a952cb501afd02a.zip |
- Update to 2.6.6
Diffstat (limited to 'net/rsync/files')
-rw-r--r-- | net/rsync/files/patch-infcodes.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/net/rsync/files/patch-infcodes.c b/net/rsync/files/patch-infcodes.c deleted file mode 100644 index 0dd0d99f67d7..000000000000 --- a/net/rsync/files/patch-infcodes.c +++ /dev/null @@ -1,21 +0,0 @@ ---- zlib/infcodes.c.orig Tue Mar 12 02:14:58 2002 -+++ zlib/infcodes.c Sun Apr 21 21:19:46 2002 -@@ -197,8 +197,18 @@ - c->mode = COPY; - case COPY: /* o: copying bytes in window, waiting for space */ - f = q - c->sub.copy.dist; -+#ifdef __FreeBSD__ -+ { -+ /* Work-around for a FreeBSD gcc bug. */ -+ volatile inflate_blocks_statef *s1 = s; -+ -+ while (f < s1->window) /* modulo window size-"while" instead */ -+ f += s1->end - s1->window; /* of "if" handles invalid distances */ -+ } -+#else - while (f < s->window) /* modulo window size-"while" instead */ - f += s->end - s->window; /* of "if" handles invalid distances */ -+#endif - while (c->len) - { - NEEDOUT |