CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2014/06/13 14:43:06
Modified files:
sbin/dump : dump.h main.c tape.c traverse.c
Log message:
Type cleanup:
* Move all off_t variables that don't look like file sizes to int64_t.
* Switch blockswritten to int64_t, so it won't wrap at 2TB.
* Same for blocksthisvol (from deraadt@).
* Switch xferrate (from tedu@) and blocksperfile from long to uint64_t.
* Since blocksperfile can be set with -B, move numarg() from long
to long long and don't mark small integer constant arguments as long.
ok deraadt@, tedu@