View | Details | Raw Unified | Return to bug 69800
Collapse All | Expand All

(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (libowfat-0.19.2.tar.bz2) = 7aea51f394d55223eec5820cc84d32f5
1
MD5 (libowfat-0.20.tar.bz2) = 60e112c24b0f3d6e2757baa96f1ed07e
2
SIZE (libowfat-0.19.2.tar.bz2) = 104852
2
SIZE (libowfat-0.20.tar.bz2) = 109541
(-)files/manpages (-2 / +2 lines)
Lines 22-31 Link Here
22
fmt_longlong.3 fmt_minus.3 fmt_pad.3 fmt_plusminus.3 fmt_str.3 \
22
fmt_longlong.3 fmt_minus.3 fmt_pad.3 fmt_plusminus.3 fmt_str.3 \
23
fmt_strn.3 fmt_uint.3 fmt_uint0.3 fmt_ulong.3 fmt_ulong0.3 \
23
fmt_strn.3 fmt_uint.3 fmt_uint0.3 fmt_ulong.3 fmt_ulong0.3 \
24
fmt_ulonglong.3 fmt_xlong.3 fmt_xlonglong.3 imult16.3 imult32.3 \
24
fmt_ulonglong.3 fmt_xlong.3 fmt_xlonglong.3 imult16.3 imult32.3 \
25
imult64.3 io_canread.3 io_canwrite.3 io_check.3 io_close.3 \
25
imult64.3 io_appendfile.3 io_canread.3 io_canwrite.3 io_check.3 io_close.3 \
26
io_closeonexec.3 io_createfile.3 io_dontwantread.3 io_dontwantwrite.3 \
26
io_closeonexec.3 io_createfile.3 io_dontwantread.3 io_dontwantwrite.3 \
27
io_eagain.3 io_fd.3 io_finishandshutdown.3 io_getcookie.3 io_nonblock.3 \
27
io_eagain.3 io_fd.3 io_finishandshutdown.3 io_getcookie.3 io_nonblock.3 \
28
io_passfd.3 io_pipe.3 io_readfile.3 io_receivefd.3 io_sendfile.3 \
28
io_passfd.3 io_pipe.3 io_readfile.3 io_readwritefile.3 io_receivefd.3 io_sendfile.3 \
29
io_setcookie.3 io_socketpair.3 io_timeout.3 io_timeouted.3 io_tryread.3 \
29
io_setcookie.3 io_socketpair.3 io_timeout.3 io_timeouted.3 io_tryread.3 \
30
io_tryreadtimeout.3 io_trywrite.3 io_trywritetimeout.3 io_wait.3 \
30
io_tryreadtimeout.3 io_trywrite.3 io_trywritetimeout.3 io_wait.3 \
31
io_waitread.3 io_waituntil.3 io_wantread.3 io_wantwrite.3 iob_addbuf.3 \
31
io_waitread.3 io_waituntil.3 io_wantread.3 io_wantwrite.3 iob_addbuf.3 \
(-)files/patch-io-iob_addfile.c (-19 lines)
Lines 1-19 Link Here
1
Index: io/iob_addfile.c
2
===================================================================
3
RCS file: /cvs/libowfat/io/iob_addfile.c,v
4
retrieving revision 1.2
5
retrieving revision 1.3
6
diff -u -r1.2 -r1.3
7
--- io/iob_addfile.c	26 Sep 2003 15:55:44 -0000	1.2
8
+++ io/iob_addfile.c	7 Apr 2004 08:38:41 -0000	1.3
9
@@ -1,7 +1,9 @@
10
 #include "iob_internal.h"
11
 
12
 int iob_addfile(io_batch* b,int64 fd,uint64 off,uint64 n) {
13
-  iob_entry* e=array_allocate(&b->b,sizeof(iob_entry),
14
+  iob_entry* e;
15
+  if (n==0) return 1;
16
+  e=array_allocate(&b->b,sizeof(iob_entry),
17
 			     array_length(&b->b,sizeof(iob_entry)));
18
   if (!e) return 0;
19
   e->type=FROMFILE;
(-)Makefile (-5 / +3 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	libowfat
8
PORTNAME=	libowfat
9
PORTVERSION=	0.19.2
9
PORTVERSION=	0.20
10
PORTREVISION=	1
11
CATEGORIES=	devel ipv6
10
CATEGORIES=	devel ipv6
12
MASTER_SITES=	http://dl.fefe.de/
11
MASTER_SITES=	http://dl.fefe.de/
13
12
Lines 30-40 Link Here
30
29
31
.include "${FILESDIR}/manpages"
30
.include "${FILESDIR}/manpages"
32
31
33
examples=	test/client.c test/dllink.c test/httpd.c test/readhttp.c \
32
examples=	examples/byte.c examples/str.c
34
		test/server.c test/uudecode.c test/vd.c
35
examplesdir=	${EXAMPLESDIR:S,^${PREFIX}/,,}
33
examplesdir=	${EXAMPLESDIR:S,^${PREFIX}/,,}
36
PLIST_DIRS=	${examplesdir}
34
PLIST_DIRS=	${examplesdir}
37
PLIST_FILES=	lib/libowfat.a ${examples:S,^test/,${examplesdir}/,}
35
PLIST_FILES=	lib/libowfat.a ${examples:S,^examples/,${examplesdir}/,}
38
.if!defined(NOPORTDOCS)
36
.if!defined(NOPORTDOCS)
39
PORTDOCS=	CHANGES README TODO
37
PORTDOCS=	CHANGES README TODO
40
.endif
38
.endif

Return to bug 69800