diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2004-07-20 22:11:31 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2004-07-20 22:11:31 +0000 |
commit | c19ae258f85b6e1c6684d2a9235f6104b52dd842 (patch) | |
tree | dc54a974457b22a6269e1ccc0b1fae031b94d290 /mbone/udpcast/files/patch-statistics.c | |
parent | New port dolly+ version 0.93: Improved version of dolly harddisk/partition (diff) |
New port udpcast version 20040531: A file transfer tool using
ethernet's multicast
Diffstat (limited to 'mbone/udpcast/files/patch-statistics.c')
-rw-r--r-- | mbone/udpcast/files/patch-statistics.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mbone/udpcast/files/patch-statistics.c b/mbone/udpcast/files/patch-statistics.c new file mode 100644 index 000000000000..176e5136b246 --- /dev/null +++ b/mbone/udpcast/files/patch-statistics.c @@ -0,0 +1,11 @@ +--- statistics.c.orig Tue Jul 20 10:46:11 2004 ++++ statistics.c Tue Jul 20 12:00:59 2004 +@@ -37,7 +37,7 @@ + static void printFilePosition(int fd) { + #ifndef __CYGWIN__ + if(fd != -1) { +- loff_t offset = lseek64(fd, 0, SEEK_CUR); ++ off_t offset = lseek(fd, 0, SEEK_CUR); + printLongNum(offset); + } + #endif |