mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
4f9ad341f6
Submitted by: Marc Slemko <marcs@znep.com>
20 lines
490 B
Plaintext
20 lines
490 B
Plaintext
*** gopher/upload.c.dist Tue Feb 18 17:31:30 1997
|
|
--- gopher/upload.c Tue Feb 18 17:40:22 1997
|
|
***************
|
|
*** 123,129 ****
|
|
CURenter();
|
|
return;
|
|
}
|
|
! while(gets(inputline)) {
|
|
ZapCRLF(inputline);
|
|
if (strcmp(inputline, ".") == 0)
|
|
break;
|
|
--- 123,129 ----
|
|
CURenter();
|
|
return;
|
|
}
|
|
! while(fgets(inputline, 256, stdin)) {
|
|
ZapCRLF(inputline);
|
|
if (strcmp(inputline, ".") == 0)
|
|
break;
|