summaryrefslogtreecommitdiff
path: root/benchmarks/sipp/files/patch-comp.c
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2006-01-09 14:21:13 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2006-01-09 14:21:13 +0000
commit36118d2ffc185cc0fdd6d4ecaff8fbdb6a0adfae (patch)
treec118808e54c38fc0dccfb0e295ce83b54e226572 /benchmarks/sipp/files/patch-comp.c
parent- Update to 1.0.0, port now requires perl5.8 (diff)
Update to 1.1.r4
PR: 90852 Submitted by: Babak Farrokhi <babak@farrokhi.net> Approved by: maintainer timeout
Notes
Notes: svn path=/head/; revision=153137
Diffstat (limited to '')
-rw-r--r--benchmarks/sipp/files/patch-comp.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/benchmarks/sipp/files/patch-comp.c b/benchmarks/sipp/files/patch-comp.c
deleted file mode 100644
index 2b687ac9328f..000000000000
--- a/benchmarks/sipp/files/patch-comp.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- comp.c.orig Sun Sep 11 18:39:50 2005
-+++ comp.c Sun Sep 11 18:40:09 2005
-@@ -40,15 +40,15 @@
- }
-
- *(void **)(&comp_compress) = dlsym(handle, "comp_compress");
-- if((error = dlerror()))
-+ if((error = (char *) dlerror()))
- { strcpy(comp_error, error); return comp_error; }
-
- *(void **)(&comp_uncompress) = dlsym(handle, "comp_uncompress");
-- if((error = dlerror()))
-+ if((error = (char *) dlerror()))
- { strcpy(comp_error, error); return comp_error; }
-
- *(void **)(&comp_free) = dlsym(handle, "comp_free");
-- if((error = dlerror()))
-+ if((error = (char *) dlerror()))
- { strcpy(comp_error, error); return comp_error; }
-
- return 0;