diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-04 21:55:11 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-04 21:55:11 +0000 |
commit | a0767c71389db3589677753c009d9c5b98a83dc0 (patch) | |
tree | 002194fffde21e293a757d0d4950fe721f164d42 /bin | |
parent | ce7edc4c65e44132dd5af58e2594a2d134decd24 (diff) |
For verbose archive listings, use -> for symlinks, not =>,
as per POSIX. From Igor Sobrado via jmc@. OK otto@
Diffstat (limited to 'bin')
-rw-r--r-- | bin/pax/gen_subs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/pax/gen_subs.c b/bin/pax/gen_subs.c index 4acd1b28b7a..7e66f62cd0a 100644 --- a/bin/pax/gen_subs.c +++ b/bin/pax/gen_subs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gen_subs.c,v 1.18 2005/04/28 06:58:07 otto Exp $ */ +/* $OpenBSD: gen_subs.c,v 1.19 2007/04/04 21:55:10 millert Exp $ */ /* $NetBSD: gen_subs.c,v 1.5 1995/03/21 09:07:26 cgd Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static const char sccsid[] = "@(#)gen_subs.c 8.1 (Berkeley) 5/31/93"; #else -static const char rcsid[] = "$OpenBSD: gen_subs.c,v 1.18 2005/04/28 06:58:07 otto Exp $"; +static const char rcsid[] = "$OpenBSD: gen_subs.c,v 1.19 2007/04/04 21:55:10 millert Exp $"; #endif #endif /* not lint */ @@ -154,7 +154,7 @@ ls_list(ARCHD *arcn, time_t now, FILE *fp) fputs(" == ", fp); safe_print(arcn->ln_name, fp); } else if (arcn->type == PAX_SLK) { - fputs(" => ", fp); + fputs(" -> ", fp); safe_print(arcn->ln_name, fp); } (void)putc(term, fp); |