diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2006-01-09 14:21:13 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2006-01-09 14:21:13 +0000 |
commit | 36118d2ffc185cc0fdd6d4ecaff8fbdb6a0adfae (patch) | |
tree | c118808e54c38fc0dccfb0e295ce83b54e226572 /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.c | 21 |
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; |