diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-10-03 13:13:47 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-10-03 13:13:47 +0000 |
| commit | bd39966d9bdfb2e5cb9ebe18986883035b79bd11 (patch) | |
| tree | 4812c81f3f605135241f3076e6434f6dd7097dba /usr.sbin/mtree/verify.c | |
| parent | 162080b465f3843d81c6ad04e910d555cc73ffe5 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/mtree/verify.c')
| -rw-r--r-- | usr.sbin/mtree/verify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/mtree/verify.c b/usr.sbin/mtree/verify.c index a599fadc5818..0da0e124319a 100644 --- a/usr.sbin/mtree/verify.c +++ b/usr.sbin/mtree/verify.c @@ -139,7 +139,7 @@ vwalk() continue; extra: if (!eflag) { - (void)printf("extra: %s", RP(p)); + (void)printf("%s extra", RP(p)); if (rflag) { if ((S_ISDIR(p->fts_statp->st_mode) ? rmdir : unlink)(p->fts_accpath)) { @@ -179,7 +179,7 @@ miss(p, tail) if (qflag && stat(path, &statbuf) == 0) p->flags |= F_VISIT; else - (void)printf("missing: %s", path); + (void)printf("%s missing", path); } if (p->type != F_DIR && p->type != F_LINK) { putchar('\n'); |
