From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Mon, 23 Sep 1996 10:56:12 +0200 From: Boyd Roberts boyd@france3.fr Subject: bug in diff.b [inferno] Topicbox-Message-UUID: 4d859a8a-eac8-11e9-9e20-41e7f4b1d025 Message-ID: <19960923085612.RSZdfKsrUFro00vK4S0K9gzMQAK_fkaUvq5U9dnDT1k@z> i've found a bug in /appl/cmd/diff.b. rob says it's a hangover from where it was ported and the offending stuff should be removed. the other thing to note is that the '95 installshield doesn't create /tmp, which diff is kind of attached to. $ diff file1 file2 doesn't work. this fixes it: 709c709 < return (s.dtype == 'M' && !(s.qid.path&Sys->CHDIR)); --- > return !(s.qid.path&Sys->CHDIR); 788c788 < if (fsb.dtype == 'M' && !(fsb.qid.path&Sys->CHDIR)) { --- > if (!(fsb.qid.path&Sys->CHDIR)) {