Line 334:

        my @lines = split ( /(\n|\r)/ , $data );


I think that it's supposed to be:

        my @lines = split ( /[\n\r]/ , $data );

The parens in Perl pattern matching are not used for grouping, but for setting the $1,$2 etc variables later.

Roberto Hoyle

r.


------------------------------------------------------- This SF.Net email is sponsored by OSTG. Have you noticed the changes on Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now, one more big change to announce. We are now OSTG- Open Source Technology Group. Come see the changes on the new OSTG site. www.ostg.com _______________________________________________ OpenCA-Devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/openca-devel

Reply via email to