diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2000-01-16 02:26:14 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-01-16 02:26:14 +0000 |
commit | 6ca5bcbe25f6b8fb6984fe42a36a853b7caab4d5 (patch) | |
tree | ff85ffc3fb4c3f3178e4647767585347b2b766e5 /news/aub | |
parent | IPv6 is now supported by a 2.3.2 KAME patch. (diff) |
"As installed by the news/aub port, it will only recognize EOL by the \n
symbol. Too many postings use \r :( I don't know where they come from
(MACs?), but the included patch seems to make aub work nicer."
PR: 15693
Submitted by: Mikhail Teterin <mi@kot.ne.mediaone.net>
Notes
Notes:
svn path=/head/; revision=24769
Diffstat (limited to 'news/aub')
-rw-r--r-- | news/aub/files/patch-01 | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/news/aub/files/patch-01 b/news/aub/files/patch-01 index e80c682f259f..74cfba9de240 100644 --- a/news/aub/files/patch-01 +++ b/news/aub/files/patch-01 @@ -1,7 +1,7 @@ ---- aub.orig Sat Oct 31 14:17:33 1998 -+++ aub Sat Oct 31 14:18:37 1998 +--- aub.orig Sat Jan 15 18:12:02 2000 ++++ aub Sat Jan 15 18:14:26 2000 @@ -38,6 +38,8 @@ - $SUM = "/bin/sum"; &find_pg("sum", 0) unless (-x $SUM); + $SUM = "/usr/bin/sum"; &find_pg("sum", 0) unless (-x $SUM); $CAT = "/bin/cat"; &find_pg("cat", 0) unless (-x $CAT); $MV = "/bin/mv"; &find_pg("mv", 0) unless (-x $MV); +$HOSTNAME = "/bin/hostname"; $HOSTNAME = &find_pg("hostname", 0) unless @@ -67,6 +67,15 @@ &abort("Remote nntp service doesn't look like nntp service to me."); } +@@ -968,7 +989,7 @@ + $timeout_flag = 0; # Not a local variable + alarm($timeout_interval); # Can't wait forever. + +- while ($socket_stuff !~ m/\n/) { # No complete line in buffer ++ while ($socket_stuff !~ m/\r\n/) { # No complete line in buffer + recv($sockname, $inp, 256, 0); # Need more data + $socket_stuff .= $inp; # Append to our buffer. + } @@ -1022,7 +1043,7 @@ local($protocol) = "tcp"; local($thishost, $problem, $junk); |