2014-06-26 Ramon Novoa <rnovoa@artica.es>

* util/pandora_xml_stress.pl: Remove new line and carriage return
	  characters when parsing the configuration file.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10290 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
ramonn 2014-06-26 10:11:47 +00:00
parent f2d05bc443
commit a3ac3bb0d8
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-06-26 Ramon Novoa <rnovoa@artica.es>
* util/pandora_xml_stress.pl: Remove new line and carriage return
characters when parsing the configuration file.
2014-06-24 Ramon Novoa <rnovoa@artica.es>
* util/recon_scripts/snmp-recon.pl: Improved host connection.

View File

@ -47,6 +47,7 @@ sub load_config ($\%\@) {
open (FILE, "<", $conf_file) || die ("[error] Could not open configuration file '$conf_file': $!.\n\n");
while (my $line = <FILE>) {
$line =~ s/[\r\n]+//g;
# A module definition
if ($line =~ m/module_begin/) {
@ -56,6 +57,7 @@ sub load_config ($\%\@) {
next if ($line =~ m/^#/);
while (my $line = <FILE>) {
$line =~ s/[\r\n]+//g;
# A comment
next if ($line =~ m/^#/);