[ont.micro.mac] macget bug fixes --- oops!

info-mac@utcsrgv.UUCP (info-mac) (07/01/84)

Date:     30 Jun 84 (Sat) 00:12:23 EDT
From: Dave Johnson <uw-beaver!ddj%brown.csnet@csnet-relay.arpa>
To: info-mac@sumex-aim.arpa
Subject:  macget bug fixes --- oops!

Here are two fixes for the macget distribution.  
The first breaks -u text mode, and the second was
an oversight.  Thanks to Dan Winkler at Harvard 
for catching them so quickly.  Just shows that
merging two working programs doesn't necessarily work.
Sorry for the confusion.

diff macget.c.bad macget.c
336,337c336,337
< 	for (i = 0; i < count; i++) {
< 		cksum += *bp++;
---
> 	for (i = 0; i < count; bp++, i++) {
> 		cksum += *bp;


diff macget.l.bad macget.l
6c6
< .B macput
---
> .B macget

	Dave Johnson