diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-10-28 20:36:30 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-10-28 20:36:30 +0000 |
commit | 99b92e4d722c825b0a8cb2a9a84d9cd6023d2e26 (patch) | |
tree | d51041e4f7517035d2e40478495d4b7d5f22587f /sysutils/disktool/files | |
parent | Upgrade to slimserver 6.2.0. New features include: (diff) |
- Add extra patch to fix functionality under > 4.x
(disk usage would always show 0)
- Bump PORTREVISION
PR: 88151
Submitted by: Serge Gagnon <serge.gagnon@b2b2c.ca>
Diffstat (limited to 'sysutils/disktool/files')
-rw-r--r-- | sysutils/disktool/files/extrapatch-disktool.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sysutils/disktool/files/extrapatch-disktool.c b/sysutils/disktool/files/extrapatch-disktool.c new file mode 100644 index 000000000000..c769cc803d7e --- /dev/null +++ b/sysutils/disktool/files/extrapatch-disktool.c @@ -0,0 +1,15 @@ +--- disktool.c.orig Fri Oct 28 14:10:55 2005 ++++ disktool.c Fri Oct 28 14:13:09 2005 +@@ -168,9 +168,9 @@ + } + + /* ==========================================================================*/ +-long kbytes(blocks, blocksize) +- long blocks; +- long blocksize; ++int64_t kbytes(blocks, blocksize) ++ int64_t blocks; ++ uint64_t blocksize; + { + /* Return number of kilobytes given the number of blocks and the block size. + This isn't quite trivial because a 32 bit signed long integer could easily |