Adjust the copyright to match reality, remove printing of gratuitous newline.

This commit is contained in:
Jordan K. Hubbard 1996-06-22 23:24:13 +00:00
parent a2df3c3345
commit 35740f4fe3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16600

View File

@ -1,6 +1,6 @@
/*-
* Copyright (c) 1996
* Jordan Hubbard, Poul-Henning Kamp, Jean-Marc Zucconi
* Jean-Marc Zucconi
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -24,7 +24,7 @@
* SUCH DAMAGE.
*/
/* $Id: main.c,v 1.2 1996/06/22 20:16:57 jkh Exp $ */
/* $Id: main.c,v 1.3 1996/06/22 21:42:14 jkh Exp $ */
#include <stdlib.h>
#include <stdio.h>
@ -325,7 +325,7 @@ display (int size, int n)
size ? "" : " [appending]");
else
sprintf (s, "Receiving %s", outputfile);
printf ("\n%s", s);
printf ("%s", s);
fflush (stdout);
bytes = n;
return;