summaryrefslogtreecommitdiff
path: root/sbin/dump
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2014-05-21 17:38:31 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2014-05-21 17:38:31 +0000
commitd73d6b6a52ab5313d212554a416d4b817a8d82cc (patch)
tree24b1baf19c1a078a726d47d417641839dde79502 /sbin/dump
parent885797d2c5a4933b301391967db8bca23dc30e09 (diff)
Nuke some trailing whitespace and break some long lines to shrink
subsequent diffs.
Diffstat (limited to 'sbin/dump')
-rw-r--r--sbin/dump/dump.h4
-rw-r--r--sbin/dump/traverse.c23
2 files changed, 15 insertions, 12 deletions
diff --git a/sbin/dump/dump.h b/sbin/dump/dump.h
index 5826b841bb5..401722d4f3c 100644
--- a/sbin/dump/dump.h
+++ b/sbin/dump/dump.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dump.h,v 1.17 2013/06/11 16:42:04 deraadt Exp $ */
+/* $OpenBSD: dump.h,v 1.18 2014/05/21 17:38:30 krw Exp $ */
/* $NetBSD: dump.h,v 1.11 1997/06/05 11:13:20 lukem Exp $ */
/*-
@@ -106,7 +106,7 @@ int mapdirs(ino_t maxino, off_t *tapesize);
/* file dumping routines */
void ufs1_blksout(int32_t *blkp, int frags, ino_t ino);
void ufs2_blksout(daddr_t *blkp, int frags, ino_t ino);
-void bread(daddr_t blkno, char *buf, int size);
+void bread(daddr_t blkno, char *buf, int size);
void dumpino(union dinode *dp, ino_t ino);
void dumpmap(char *map, int type, ino_t ino);
void writeheader(ino_t ino);
diff --git a/sbin/dump/traverse.c b/sbin/dump/traverse.c
index e61f0bc6d7e..7aa52bef0d9 100644
--- a/sbin/dump/traverse.c
+++ b/sbin/dump/traverse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: traverse.c,v 1.29 2014/05/20 21:11:16 krw Exp $ */
+/* $OpenBSD: traverse.c,v 1.30 2014/05/21 17:38:30 krw Exp $ */
/* $NetBSD: traverse.c,v 1.17 1997/06/05 11:13:27 lukem Exp $ */
/*-
@@ -499,7 +499,7 @@ dumpino(union dinode *dp, ino_t ino)
dumpmap(dumpinomap, TS_BITS, ino);
}
CLRINO(ino, dumpinomap);
- if (sblock->fs_magic == FS_UFS1_MAGIC) {
+ if (sblock->fs_magic == FS_UFS1_MAGIC) {
spcl.c_mode = dp->dp1.di_mode;
spcl.c_size = dp->dp1.di_size;
spcl.c_old_atime = (time_t)dp->dp1.di_atime;
@@ -545,7 +545,8 @@ dumpino(union dinode *dp, ino_t ino)
if (DIP(dp, di_size) > 0 &&
#ifdef FS_44INODEFMT
(DIP(dp, di_size) < sblock->fs_maxsymlinklen ||
- (sblock->fs_maxsymlinklen == 0 && DIP(dp, di_blocks) == 0))) {
+ (sblock->fs_maxsymlinklen == 0 &&
+ DIP(dp, di_blocks) == 0))) {
#else
DIP(dp, di_blocks) == 0) {
#endif
@@ -806,7 +807,8 @@ loop:
if ((cnt = pread(diskfd, buf, size, (off_t)blkno << dev_bshift)) ==
size)
return;
- if (blkno + (size / dev_bsize) > fsbtodb(sblock, sblock->fs_ffs1_size)) {
+ if (blkno + (size / dev_bsize) >
+ fsbtodb(sblock, sblock->fs_ffs1_size)) {
/*
* Trying to read the final fragment.
*
@@ -824,8 +826,8 @@ loop:
msg("read error from %s: %s: [block %lld]: count=%d\n",
disk, strerror(errno), blkno, size);
else
- msg("short read error from %s: [block %lld]: count=%d, got=%d\n",
- disk, blkno, size, cnt);
+ msg("short read error from %s: [block %lld]: count=%d, "
+ "got=%d\n", disk, blkno, size, cnt);
if (++breaderrors > BREADEMAX) {
msg("More than %d block read errors from %s\n",
BREADEMAX, disk);
@@ -846,11 +848,12 @@ loop:
(off_t)blkno << dev_bshift)) == dev_bsize)
continue;
if (cnt == -1) {
- msg("read error from %s: %s: [sector %lld]: count=%ld\n",
- disk, strerror(errno), blkno, dev_bsize);
+ msg("read error from %s: %s: [sector %lld]: "
+ "count=%ld\n", disk, strerror(errno), blkno,
+ dev_bsize);
continue;
}
- msg("short read error from %s: [sector %lld]: count=%ld, got=%d\n",
- disk, blkno, dev_bsize, cnt);
+ msg("short read error from %s: [sector %lld]: count=%ld, "
+ "got=%d\n", disk, blkno, dev_bsize, cnt);
}
}