1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/comms/zmtx-zmrx/files/patch-01
David E. O'Brien a4af109a79 zmtx and zmrz impliement the ZMODEM error correcting protocol used to
send/receive files over a dial-in serial port.  And they do one thing
and only one thing -- transmit files.  They don't do file conversions,
they don't do remote commands, or any of that other stuff.
1996-12-08 23:39:32 +00:00

30 lines
726 B
Plaintext

--- zmrx.c.orig Sun Oct 13 12:25:53 1996
+++ zmrx.c Mon Oct 14 20:17:03 1996
@@ -70,7 +70,7 @@
cps = ftell(fp) / duration;
- fprintf(stderr,"zmrx: receiving file \"%s\" %8ld bytes (%3d %%/%5d cps) \r",
+ fprintf(stderr,"receiving file \"%s\" %8ld bytes (%3d %%/%5d cps)\r",
name,ftell(fp),percentage,cps);
}
@@ -223,7 +223,7 @@
}
if (opt_v) {
- fprintf(stderr,"zmrx: receiving file \"%s\"\r",name);
+ fprintf(stderr,"receiving file \"%s\"\r",name);
}
sscanf(rx_data_subpacket + strlen(rx_data_subpacket) + 1,
@@ -342,7 +342,7 @@
*/
if (opt_v) {
- fprintf(stderr,"zmrx: received file \"%s\" \n",name);
+ fprintf(stderr,"zmrx: received file \"%s\"\n",name);
}
}