diff options
author | asami <asami@FreeBSD.org> | 1997-01-07 10:43:40 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-01-07 10:43:40 +0000 |
commit | ccf2644e900235ddc9676a385fe34e095ae43315 (patch) | |
tree | 56ca76124fe0e67883c538fe64b1ee67819fa9d8 /gnu | |
parent | 3f7af7a1d1570eb9c2e419830221c31c87ad024e (diff) | |
download | FreeBSD-src-ccf2644e900235ddc9676a385fe34e095ae43315.zip FreeBSD-src-ccf2644e900235ddc9676a385fe34e095ae43315.tar.gz |
Typo, "%d" -> "%s". This caused tar to print things like
tar: Can't change to directory 282656 : No such file or directory
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/tar/tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/tar/tar.c b/gnu/usr.bin/tar/tar.c index 73aba24..8fa0923 100644 --- a/gnu/usr.bin/tar/tar.c +++ b/gnu/usr.bin/tar/tar.c @@ -1142,7 +1142,7 @@ again: if (nlp->fake) { if (nlp->change_dir && chdir (nlp->change_dir)) - msg_perror ("Can't change to directory %d", nlp->change_dir); + msg_perror ("Can't change to directory %s", nlp->change_dir); namelist = 0; return 1; } |