From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Tue, 28 Nov 1995 16:44:43 -0500 From: steve@plan9.ecf.toronto.edu steve@plan9.ecf.toronto.edu Subject: fix/enhancement for disk/mkfs.c Topicbox-Message-UUID: 36dca490-eac8-11e9-9e20-41e7f4b1d025 Message-ID: <19951128214443.PYkfbdSC8d51sWebIWNSwUF8WN4pq6qSp8hOLS7hCFI@z> By default, the '-v' (verb) option prints the name of all files, whether or not they are actually copied. This doesn't seem to quite agree with the behavior described in the manpage, which is what I'd prefer. The following patch will cause '-v' to only print filenames for files that are copied: stealth% pwd /sys/src/cmd/disk stealth% diff orig mkfs.c 267,268d266 < if(verb) < fprint(2, "%s\n", f->new); 295c293,295 < else --- > else { > if(verb) > fprint(2, "%s\n", f->new); 296a297 > }