diff options
author | Steve Price <steve@FreeBSD.org> | 2000-05-28 03:37:11 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-05-28 03:37:11 +0000 |
commit | ac9cd8d92712c4d7d2a7af6e0a9addeb3109320a (patch) | |
tree | 5dd9945c7dd23eb0045e5f58086e7700962dddb9 /security/zebedee/files | |
parent | b1dd3740d428cbad18e8048dbec6851796dd5415 (diff) | |
download | freebsd-ports-ac9cd8d92712c4d7d2a7af6e0a9addeb3109320a.zip |
BZ2_ was added recently to all functions in libbz2.a.
Diffstat (limited to 'security/zebedee/files')
-rw-r--r-- | security/zebedee/files/patch-ab | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/security/zebedee/files/patch-ab b/security/zebedee/files/patch-ab new file mode 100644 index 000000000000..cc3f13bd1d8c --- /dev/null +++ b/security/zebedee/files/patch-ab @@ -0,0 +1,20 @@ +--- zebedee.c.orig Sat May 27 20:48:35 2000 ++++ zebedee.c Sat May 27 20:51:13 2000 +@@ -902,7 +902,7 @@ + + case CMPTYPE_BZIP2: + #ifndef DONT_HAVE_BZIP2 +- if ((num = bzBuffToBuffDecompress((char *)(msg->data), ++ if ((num = BZ2_bzBuffToBuffDecompress((char *)(msg->data), + (unsigned int *)&uncmpSize, + (char *)(msg->tmp), + (unsigned int)size, +@@ -981,7 +981,7 @@ + + case CMPTYPE_BZIP2: + #ifndef DONT_HAVE_BZIP2 +- if ((num = bzBuffToBuffCompress((char *)(msg->tmp + 2), ++ if ((num = BZ2_bzBuffToBuffCompress((char *)(msg->tmp + 2), + (unsigned int *)&cmpSize, + (char *)(msg->data), + (unsigned int)size, |