diff options
author | tobez <tobez@FreeBSD.org> | 2003-03-13 15:14:56 +0000 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2003-03-13 15:14:56 +0000 |
commit | 48bb025c583d55ca6a62180b3bcf8b04f7117505 (patch) | |
tree | 446f49309e56749cfe2fc4d9bc8ce5f5e22adc4b /usr.sbin/mtree/compare.c | |
parent | 928f52e38a8aec1a91cd52ec7a2cc4836cc13ea4 (diff) | |
download | FreeBSD-src-48bb025c583d55ca6a62180b3bcf8b04f7117505.zip FreeBSD-src-48bb025c583d55ca6a62180b3bcf8b04f7117505.tar.gz |
Fix two minor mismatch reporting output errors.
Reviewed by: phk
MFC After: 3 weeks
Diffstat (limited to 'usr.sbin/mtree/compare.c')
-rw-r--r-- | usr.sbin/mtree/compare.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/mtree/compare.c b/usr.sbin/mtree/compare.c index 648f70c..a0de667 100644 --- a/usr.sbin/mtree/compare.c +++ b/usr.sbin/mtree/compare.c @@ -212,8 +212,8 @@ typeerr: LABEL; LABEL; (void)printf("%scksum expected %lu found %lu\n", tab, s->cksum, val); + tab = "\t"; } - tab = "\t"; } } /* @@ -301,7 +301,7 @@ typeerr: LABEL; strcmp(cp = rlink(p->fts_accpath), s->slink)) { LABEL; (void)printf("%slink_ref expected %s found %s\n", - tab, cp, s->slink); + tab, s->slink, cp); } return (label); } |