Ethereal-cvs: [Ethereal-cvs] cvs commit: ethereal/doc dfilter2pod.pl

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: obiot@xxxxxxxxxxxx (Olivier Biot)
Date: Wed, 28 Apr 2004 12:50:03 -0500 (CDT)
obiot       2004/04/28 12:50:02 CDT

  Modified files:
    doc                  dfilter2pod.pl 
  Log:
  When building the Ethereal documentation on MSVC++/cygwin the cygwin perl
  will not swallow the '\r\n' line end sequence when invoking chomp(), but
  instead the '\r' character will remain. For this reason, chomp() cannot
  be used and global removal of '\r' and '\n' characters must be used
  instead, like in: $_ =~ s/[\r\n]//g;
  
  Revision  Changes    Path
  1.5       +4 -2      ethereal/doc/dfilter2pod.pl