[svn] Do away with line separator.

This commit is contained in:
hniksic 2000-11-29 08:19:46 -08:00
parent 7e900c50bf
commit 518fe8d06d
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-11-29 John Summerfield <summer@OS2.ami.com.au>
* netrc.c (parse_netrc): Get rid of line ending.
2000-11-25 Hrvoje Niksic <hniksic@arsdigita.com>
* ftp.c (ftp_retrieve_list): Undo typo "fix" until resolution by

View File

@ -270,6 +270,13 @@ parse_netrc (const char *path)
/* While there are lines in the file... */
while ((line = read_whole_line (fp)))
{
/* Do away with line separators. */
int len = strlen (line);
if (len && line[len - 1] == '\n')
line[--len] = '\0';
if (len && line[len - 1] == '\r')
line[--len] = '\0';
ln ++;
/* Parse the line. */