Tools for working with Cidco Mailstations

recvdump: go back to building received byte inline

I'm not sure why this was causing corruption on Windows

+3 -6
+3 -6
util/recvdump.c
··· 61 61 { 62 62 FILE *pFile; 63 63 unsigned int received = 0, expected = 0; 64 - unsigned char t1, t2, t3, b; 64 + unsigned char b; 65 65 char fn[14]; 66 66 int codeflash = 0, dataflash = 0; 67 67 int x; ··· 106 106 fflush(stdout); 107 107 108 108 while (received < expected) { 109 - t1 = recvtribble(); 110 - t2 = recvtribble(); 111 - t3 = recvtribble(); 112 - 113 - b = t1 + (t2 << 3) + ((t3 & dibmask) << 6); 109 + b = recvtribble() + (recvtribble() << 3) + 110 + ((recvtribble() & dibmask) << 6); 114 111 115 112 if (received == 0) 116 113 printf("\n");